1 #!/bin/bash -u 2 # 3 # There are two versions (good & bad) of inorder_norecurse.c and 4 # preorder_norecurse.c. This script makes sure the good versions 5 # are copied into the .c files that will be built and copied into 6 # the good-objects directory, for the bisection test. It is called 7 # from run-test-nowrapper.sh. 8 # 9 10 pushd full_bisect_test 11 12 cp inorder_norecurse.c.good inorder_norecurse.c 13 cp preorder_norecurse.c.good preorder_norecurse.c 14 15 popd 16