mirror of
https://github.com/byteworksinc/ORCA-C.git
synced 2025-01-10 12:30:03 +00:00
1 line
551 B
Plaintext
1 line
551 B
Plaintext
|
* Exec file to run Special Conformance Test 4.5.3.2 *
unset exit
compile spc4.5.3.2.cc keep=3/spc4532
set errNo {status}
if {errNo} == 0
compile spc4532.1.cc keep=3/spc4532.1
set errNo {status}
if {errNo} == 0
link 3/spc4532 3/spc4532.1 keep=3/spc4532
set errNo {status}
if {errNo} == 0
3/spc4532
else
echo Unable to link Special Conformance Test 4.5.3.2
end
else
echo Unable to compile file spc4532.1.cc
end
else
echo Unable to compile file spc4.5.3.2.cc
end
|