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