===> ctors ==== run-regress-ctors ==== cc -O2 -pipe -MD -MP -c /home/src/regress/lib/csu/ctors/ctors.c cc -o ctors ctors.o ./ctors ===> dtors ==== dtor-exit ==== cc -O2 -pipe -MD -MP -c /home/src/regress/lib/csu/dtors/dtors.c cc -o dtors dtors.o ./dtors ==== dtor-return ==== ./dtors -f ===> init_priority ==== run-regress-init_priority_test ==== c++ -O2 -pipe -MD -MP -c /home/src/regress/lib/csu/init_priority/init_priority_test.cc c++ -o init_priority_test init_priority_test.o ./init_priority_test 6407 8742 12597 14117 17071 20840 28373 31319 40956 47220 ===> callbacks ===> callbacks/libaa cc -O2 -pipe -g -MD -MP -c /home/src/regress/lib/csu/callbacks/libaa/aa.c -o aa.o building standard aa library ranlib libaa.a cc -O2 -pipe -g -MD -MP -c -fpic -DPIC /home/src/regress/lib/csu/callbacks/libaa/aa.c -o aa.so building shared aa library (version 0.0) cc -shared -Wl,-soname,libaa.so.0.0 -fpic -o libaa.so.0.0 `echo aa.so | tr ' ' '\n' | sort -R` ===> callbacks/libab cc -O2 -pipe -g -MD -MP -c /home/src/regress/lib/csu/callbacks/libab/ab.c -o ab.o building standard ab library ranlib libab.a cc -O2 -pipe -g -MD -MP -c -fpic -DPIC /home/src/regress/lib/csu/callbacks/libab/ab.c -o ab.so building shared ab library (version 0.0) cc -shared -Wl,-soname,libab.so.0.0 -fpic -o libab.so.0.0 `echo ab.so | tr ' ' '\n' | sort -R` ===> callbacks/atexit ==== regress-atexit ==== cc -O2 -pipe -DLIBAA="\"/home/src/regress/lib/csu/callbacks/atexit/../libaa/obj/libaa.so\"" -DLIBAB="\"/home/src/regress/lib/csu/callbacks/atexit/../libab/obj/libab.so\"" -MD -MP -c /home/src/regress/lib/csu/callbacks/atexit/atexit_test.c cc -Wl,-E -o atexit_test atexit_test.o for i in 0 1 2 3; do ./atexit_test $i || exit; printf "finished $i\n\n"; done | cmp -s - /home/src/regress/lib/csu/callbacks/atexit/expected.out ===> callbacks/pthread_atfork ==== regress-pthread_atfork ==== cc -O2 -pipe -DLIBAA="\"/home/src/regress/lib/csu/callbacks/pthread_atfork/../libaa/obj/libaa.so\"" -DLIBAB="\"/home/src/regress/lib/csu/callbacks/pthread_atfork/../libab/obj/libab.so\"" -MD -MP -c /home/src/regress/lib/csu/callbacks/pthread_atfork/pthread_atfork_test.c cc -Wl,-E -o pthread_atfork_test pthread_atfork_test.o -lpthread for i in 0 1 2 3; do ./pthread_atfork_test $i || exit; printf "finished $i\n\n"; printf "finished $i\n\n" >&3; done >parent_out 3>child_out cmp -s parent_out /home/src/regress/lib/csu/callbacks/pthread_atfork/expected_parent.out cmp -s child_out /home/src/regress/lib/csu/callbacks/pthread_atfork/expected_child.out