summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--test/Configure/basic.py2
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