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