diff options
author | Steven Knight <knight@baldmt.com> | 2008-09-06 14:25:07 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2008-09-06 14:25:07 (GMT) |
commit | af22522816d1f875dc0976ee3ca63f09e77e4ed4 (patch) | |
tree | 08d56e3b734709c2272d2b8c4e021c5eeafc6486 /test | |
parent | 96823f98b3ca69ae84cbfd9115378a7e033a0cc1 (diff) | |
download | SCons-af22522816d1f875dc0976ee3ca63f09e77e4ed4.zip SCons-af22522816d1f875dc0976ee3ca63f09e77e4ed4.tar.gz SCons-af22522816d1f875dc0976ee3ca63f09e77e4ed4.tar.bz2 |
Add a test for revision 3340, escaping variable names when using
env_spawn(), to accommodate a funky variable name used by Ubuntu packagin.
Diffstat (limited to 'test')
-rw-r--r-- | test/Configure/basic.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/Configure/basic.py b/test/Configure/basic.py index 677f40f..d4b9a59 100644 --- a/test/Configure/basic.py +++ b/test/Configure/basic.py @@ -43,6 +43,8 @@ test.write('SConstruct', """\ env = Environment() import os env.AppendENVPath('PATH', os.environ['PATH']) +# Throw in a bad variable name intentionally used by Ubuntu packaging. +env['ENV']['HASH(0x12345678)'] = 'Bad variable name!' conf = Configure(env) r1 = conf.CheckCHeader( 'math.h' ) r2 = conf.CheckCHeader( 'no_std_c_header.h' ) # leads to compile error |