mirror of
https://github.com/byteworksinc/ORCA-C.git
synced 2024-11-16 13:09:16 +00:00
30 lines
550 B
Plaintext
30 lines
550 B
Plaintext
* Exec file to run Special Conformance Test 25.0.2 *
|
|
|
|
unset exit
|
|
|
|
compile spc25.0.2.cc keep=3/spc25.2
|
|
set errNo {status}
|
|
|
|
if {errNo} == 0
|
|
compile spc25.2.1.cc keep=3/spc25.2.1
|
|
|
|
set errNo {status}
|
|
if {errNo} == 0
|
|
link 3/spc25.2 3/spc25.2.1 keep=3/spc25.2
|
|
|
|
set errNo {status}
|
|
if {errNo} == 0
|
|
3/spc25.2
|
|
|
|
else
|
|
echo Unable to link Special Conformance Test 25.0.2
|
|
end
|
|
|
|
else
|
|
echo Unable to compile file spc25.2.1.cc
|
|
end
|
|
|
|
else
|
|
echo Unable to compile file spc25.0.2.cc
|
|
end
|