mirror of
https://github.com/byteworksinc/ORCA-C.git
synced 2024-11-19 18:31:43 +00:00
34 lines
688 B
Plaintext
34 lines
688 B
Plaintext
* Exec file to run Special Conformance Test 4.4.1.1 *
|
|
|
|
unset exit
|
|
|
|
echo compile spc4.4.1.1.cc
|
|
compile spc4.4.1.1.cc keep=14:spc4411.mn
|
|
set errNo {status}
|
|
|
|
if {errNo} == 0
|
|
echo compile spc4411.1.cc
|
|
compile spc4411.1.cc keep=14:spc4411.1
|
|
|
|
set errNo {status}
|
|
if {errNo} == 0
|
|
echo link spc4.4.1.1.cc
|
|
link 14:spc4411.mn 14:spc4411.1 keep=14:spc4411
|
|
|
|
set errNo {status}
|
|
if {errNo} == 0
|
|
echo execute spc4.4.1.1.cc
|
|
14:spc4411
|
|
|
|
else
|
|
echo Unable to link Special Conformance Test 4.4.1.1
|
|
end
|
|
|
|
else
|
|
echo Unable to compile file spc4411.1.cc
|
|
end
|
|
|
|
else
|
|
echo Unable to compile file spc4.4.1.1.cc
|
|
end
|