Renamed two phase lookup test to make filename shorter.

[SVN r36557]
This commit is contained in:
John Maddock
2007-01-01 12:41:24 +00:00
parent 06351de064
commit 23e87f9712
7 changed files with 16 additions and 14 deletions

View File

@ -1,7 +1,7 @@
#
# Regression test Jamfile for boost configuration setup.
# *** DO NOT EDIT THIS FILE BY HAND ***
# This file was automatically generated on Sun Dec 31 16:29:33 2006
# This file was automatically generated on Mon Jan 01 12:39:24 2007
# by libs/config/tools/generate.cpp
# Copyright John Maddock.
# Use, modification and distribution are subject to the
@ -316,8 +316,8 @@ test-suite "BOOST_NO_TEMPLATE_TEMPLATES" :
[ run no_template_template_pass.cpp <template>config_options ]
[ compile-fail no_template_template_fail.cpp <template>config_options ] ;
test-suite "BOOST_NO_TWO_PHASE_NAME_LOOKUP" :
[ run no_two_phase_name_lookup_pass.cpp <template>config_options ]
[ compile-fail no_two_phase_name_lookup_fail.cpp <template>config_options ] ;
[ run no_two_phase_lookup_pass.cpp <template>config_options ]
[ compile-fail no_two_phase_lookup_fail.cpp <template>config_options ] ;
test-suite "BOOST_FUNCTION_SCOPE_USING_DECLARATION_BREAKS_ADL" :
[ run no_using_breaks_adl_pass.cpp <template>config_options ]
[ compile-fail no_using_breaks_adl_fail.cpp <template>config_options ] ;

View File

@ -1,7 +1,7 @@
#
# Regression test Jamfile for boost configuration setup.
# *** DO NOT EDIT THIS FILE BY HAND ***
# This file was automatically generated on Sun Dec 31 16:29:33 2006
# This file was automatically generated on Mon Jan 01 12:39:24 2007
# by libs/config/tools/generate.cpp
# Copyright John Maddock.
# Use, modification and distribution are subject to the
@ -315,8 +315,8 @@ test-suite "BOOST_NO_TEMPLATE_TEMPLATES" :
[ run no_template_template_pass.cpp ]
[ compile-fail no_template_template_fail.cpp ] ;
test-suite "BOOST_NO_TWO_PHASE_NAME_LOOKUP" :
[ run no_two_phase_name_lookup_pass.cpp ]
[ compile-fail no_two_phase_name_lookup_fail.cpp ] ;
[ run no_two_phase_lookup_pass.cpp ]
[ compile-fail no_two_phase_lookup_fail.cpp ] ;
test-suite "BOOST_FUNCTION_SCOPE_USING_DECLARATION_BREAKS_ADL" :
[ run no_using_breaks_adl_pass.cpp ]
[ compile-fail no_using_breaks_adl_fail.cpp ] ;

View File

@ -1001,6 +1001,8 @@ void print_boost_macros()
// END GENERATED BLOCK
PRINT_MACRO(BOOST_INTEL);

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Dec 31 16:29:33 2006
// This file was automatically generated on Mon Jan 01 12:39:24 2007
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the
@ -275,7 +275,7 @@ namespace boost_no_swprintf = empty_boost;
namespace boost_no_template_templates = empty_boost;
#endif
#ifndef BOOST_NO_TWO_PHASE_NAME_LOOKUP
#include "boost_no_two_phase_name_lookup.ipp"
#include "boost_no_two_phase_lookup.ipp"
#else
namespace boost_no_two_phase_name_lookup = empty_boost;
#endif

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Dec 31 16:29:33 2006
// This file was automatically generated on Mon Jan 01 12:05:16 2007
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the
@ -10,7 +10,7 @@
// Test file for macro BOOST_NO_TWO_PHASE_NAME_LOOKUP
// This file should not compile, if it does then
// BOOST_NO_TWO_PHASE_NAME_LOOKUP should not be defined.
// See file boost_no_two_phase_name_lookup.ipp for details
// See file boost_no_two_phase_lookup.ipp for details
// Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file:
@ -22,7 +22,7 @@
#include "test.hpp"
#ifdef BOOST_NO_TWO_PHASE_NAME_LOOKUP
#include "boost_no_two_phase_name_lookup.ipp"
#include "boost_no_two_phase_lookup.ipp"
#else
#error "this file should not compile"
#endif

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Dec 31 16:29:33 2006
// This file was automatically generated on Mon Jan 01 12:05:16 2007
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the
@ -10,7 +10,7 @@
// Test file for macro BOOST_NO_TWO_PHASE_NAME_LOOKUP
// This file should compile, if it does not then
// BOOST_NO_TWO_PHASE_NAME_LOOKUP should be defined.
// See file boost_no_two_phase_name_lookup.ipp for details
// See file boost_no_two_phase_lookup.ipp for details
// Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file:
@ -22,7 +22,7 @@
#include "test.hpp"
#ifndef BOOST_NO_TWO_PHASE_NAME_LOOKUP
#include "boost_no_two_phase_name_lookup.ipp"
#include "boost_no_two_phase_lookup.ipp"
#else
namespace boost_no_two_phase_name_lookup = empty_boost;
#endif