#!/bin/sh # (C) Copyright John Maddock 2001 - 2003. # Use, modification and distribution are subject to the # Boost Software License, Version 1.0. (See accompanying file # LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) // See http://www.boost.org/libs/config for the most recent version. #get date: date_string=`date` # init config file: cat > ../test/regression.cfg << EOF // // regression test script for boost configuration setup // run libs/config/test/config_info.cpp run libs/config/test/config_test.cpp run libs/config/test/limits_test.cpp compile-fail threads/test_thread_fail1.cpp ; compile-fail threads/test_thread_fail2.cpp ; EOF cat > ../test/Jamfile << EOF # # Regression test Jamfile for boost configuration setup. # *** DO NOT EDIT THIS FILE BY HAND *** # This file was automatically generated on $date_string, # by libs/config/tools/generate # Copyright John Maddock. # # If you need to alter build preferences then set them in # the template defined in options.jam. # subproject libs/config/test ; # bring in the rules for testing import testing ./options ; run config_info.cpp