Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-04-09 07:49:00

0001 #!/bin/bash -l 
0002 
0003 
0004 bins="CSGNodeTest CSGPrimTest CSGSolidTest CSGFoundryTest CSGScanTest"
0005 for bin in $bins ; do
0006    echo $msg $(which $bin)
0007    $bin
0008    [ $? -ne 0 ] && echo runtime error from $bin && exit 1
0009 done
0010 
0011 exit 0
0012