note description: "Names of predefined environment variables for an Eiffel test" legal: "See notice at end of class." status: "See notice at end of class." class EW_PREDEFINED_VARIABLES feature {NONE} -- Pre-defined environment variable names Source_dir_name: STRING_32 = "SOURCE" -- Name of environment variable with full name of -- source directory Test_dir_name: STRING_32 = "TEST" -- Name of environment variable with name of -- test directory, where test is to be performed. Cluster_dir_name: STRING_32 = "CLUSTER" -- Name of Environment variable with name of -- cluster directory. All class texts should -- be copied to this directory or a direct -- subdirectory of it. Output_dir_name: STRING_32 = "OUTPUT" -- Name of Environment variable with name of -- output directory. All output from -- compilations or system executions is placed -- in this directory. Work_execution_dir_name: STRING_32 = "EXEC_WORK" -- Name of environment variable with name of -- workbench execution directory. A system to -- be executed in workbench mode is found in -- this directory. Final_execution_dir_name: STRING_32 = "EXEC_FINAL" -- Name of environment variable with name of -- final execution directory. A system to -- be executed in final mode is found in -- this directory. Compile_command_name: STRING_32 = "EWEASEL_COMPILE" -- Name of environment variable whose value is the -- name of the command to use for compiling Freeze_command_name: STRING_32 = "EWEASEL_FREEZE" -- Name of environment variable whose value is the -- name of the command to use for freezing. Execute_command_name: STRING_32 = "EWEASEL_EXECUTE" -- Name of environment variable whose value is the -- name of the command to use for system execution. Eweasel_fast_name: STRING_32 = "EWEASEL_FAST" -- Name of environment variable which indicates -- that "speed" mode should be used, if variable set note date: "$Date$" revision: "$Revision$" copyright: "[ Copyright (c) 1984-2018, University of Southern California, Eiffel Software and contributors. All rights reserved. ]" license: "Your use of this work is governed under the terms of the GNU General Public License version 2" copying: "[ This file is part of the EiffelWeasel Eiffel Regression Tester. The EiffelWeasel Eiffel Regression Tester is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2 as published by the Free Software Foundation. The EiffelWeasel Eiffel Regression Tester is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License version 2 for more details. You should have received a copy of the GNU General Public License version 2 along with the EiffelWeasel Eiffel Regression Tester if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA ]" end