summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMats Wichmann <mats@linux.com>2023-03-21 13:30:36 -0600
committerMats Wichmann <mats@linux.com>2023-03-21 13:34:31 -0600
commitfd166f513214e81d3622485128739354dfa11a24 (patch)
tree346f6ce373ca9f1f96e74bab956f5d92b0467432
parent5eab3a7caea508b69501d3b577a706910e980840 (diff)
downloadscons-git-fd166f513214e81d3622485128739354dfa11a24.tar.gz
Fix dictifyCPPDEFINES handlong of macro strings
CPPDEFINES can contain name=value strings, either a single one, or one or more in a sequence type. After conversion (subsequent Append/Prepend to CPPDEFINES), these will be stored as tuples, but it is possible to hit cases where the type conversion has never been triggered. The C Scanner has its own routine to process CPPDEFINES, and missed these cases, which are now handled. The testcases in issue 4193 which showed this problem are now included in the C scanner unit tests, and the test for dictifyCPPDEFINES is expanded to check these two forms. Fixes #4193 Signed-off-by: Mats Wichmann <mats@linux.com>
-rw-r--r--CHANGES.txt9
-rw-r--r--SCons/Scanner/C.py21
-rw-r--r--SCons/Scanner/CTests.py98
3 files changed, 91 insertions, 37 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index c6f35faff..c5949793d 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -9,9 +9,12 @@ NOTE: 4.3.0 now requires Python 3.6.0 and above. Python 3.5.x is no longer suppo
RELEASE VERSION/DATE TO BE FILLED IN LATER
- From John Doe:
-
- - Whatever John Doe did.
+ From Mats Wichmann
+ - C scanner's dictifyCPPDEFINES routine did not understand the possible
+ combinations of CPPDEFINES - not aware of a "name=value" string either
+ embedded in a sequence, or by itself. The conditional C scanner thus
+ did not always properly apply the defines. The regular C scanner does
+ not use these, so was not affected. [fixes #4193]
RELEASE 4.5.2 - Sun, 21 Mar 2023 14:08:29 -0700
diff --git a/SCons/Scanner/C.py b/SCons/Scanner/C.py
index a066104e5..418454ff6 100644
--- a/SCons/Scanner/C.py
+++ b/SCons/Scanner/C.py
@@ -64,22 +64,35 @@ class SConsCPPScanner(SCons.cpp.PreProcessor):
def dictify_CPPDEFINES(env) -> dict:
"""Returns CPPDEFINES converted to a dict."""
cppdefines = env.get('CPPDEFINES', {})
+ result = {}
if cppdefines is None:
- return {}
+ return result
if SCons.Util.is_Sequence(cppdefines):
- result = {}
for c in cppdefines:
if SCons.Util.is_Sequence(c):
try:
result[c[0]] = c[1]
except IndexError:
- # it could be a one-item sequence
+ # could be a one-item sequence
result[c[0]] = None
+ elif SCons.Util.is_String(c):
+ try:
+ name, value = c.split('=')
+ result[name] = value
+ except ValueError:
+ result[c] = None
else:
+ # don't really know what to do here
result[c] = None
return result
+ if SCons.Util.is_String(cppdefines):
+ try:
+ name, value = cppdefines.split('=')
+ return {name: value}
+ except ValueError:
+ return {cppdefines: None}
if not SCons.Util.is_Dict(cppdefines):
- return {cppdefines : None}
+ return {cppdefines: None}
return cppdefines
class SConsCPPScannerWrapper:
diff --git a/SCons/Scanner/CTests.py b/SCons/Scanner/CTests.py
index 14e156e71..e9780d0fc 100644
--- a/SCons/Scanner/CTests.py
+++ b/SCons/Scanner/CTests.py
@@ -91,6 +91,27 @@ int main(void)
}
""")
+# include using a macro, defined in source file
+test.write('f9a.c', """\
+#define HEADER "f9.h"
+#include HEADER
+
+int main(void)
+{
+ return 0;
+}
+""")
+
+# include using a macro, not defined in source file
+test.write('f9b.c', """\
+#include HEADER
+
+int main(void)
+{
+ return 0;
+}
+""")
+
# for Emacs -> "
@@ -99,7 +120,7 @@ test.subdir('d1', ['d1', 'd2'])
headers = ['f1.h','f2.h', 'f3-test.h', 'fi.h', 'fj.h', 'never.h',
'd1/f1.h', 'd1/f2.h', 'd1/f3-test.h', 'd1/fi.h', 'd1/fj.h',
'd1/d2/f1.h', 'd1/d2/f2.h', 'd1/d2/f3-test.h',
- 'd1/d2/f4.h', 'd1/d2/fi.h', 'd1/d2/fj.h']
+ 'd1/d2/f4.h', 'd1/d2/fi.h', 'd1/d2/fj.h', 'f9.h']
for h in headers:
test.write(h, " ")
@@ -224,7 +245,7 @@ def deps_match(self, deps, headers):
global my_normpath
scanned = list(map(my_normpath, list(map(str, deps))))
expect = list(map(my_normpath, headers))
- self.assertTrue(scanned == expect, "expect %s != scanned %s" % (expect, scanned))
+ self.assertTrue(scanned == expect, f"expect {expect} != scanned {scanned}")
# define some tests:
@@ -443,7 +464,7 @@ class CScannerTestCase15(unittest.TestCase):
env = DummyEnvironment(CPPSUFFIXES = suffixes)
s = SCons.Scanner.C.CScanner()
for suffix in suffixes:
- assert suffix in s.get_skeys(env), "%s not in skeys" % suffix
+ assert suffix in s.get_skeys(env), f"{suffix} not in skeys"
class CConditionalScannerTestCase1(unittest.TestCase):
@@ -490,6 +511,29 @@ class CConditionalScannerTestCase3(unittest.TestCase):
headers = ['d1/f1.h']
deps_match(self, deps, headers)
+
+class CConditionalScannerTestCase4(unittest.TestCase):
+ def runTest(self):
+ """Test that dependency is detected if #include uses a macro."""
+
+ # first try the macro defined in the source file
+ with self.subTest():
+ env = DummyEnvironment()
+ s = SCons.Scanner.C.CConditionalScanner()
+ deps = s(env.File('f9a.c'), env, s.path(env))
+ headers = ['f9.h']
+ deps_match(self, deps, headers)
+
+ # then try the macro defined on the command line
+ with self.subTest():
+ env = DummyEnvironment(CPPDEFINES='HEADER=\\"f9.h\\"')
+ #env = DummyEnvironment(CPPDEFINES=['HEADER=\\"f9.h\\"'])
+ s = SCons.Scanner.C.CConditionalScanner()
+ deps = s(env.File('f9b.c'), env, s.path(env))
+ headers = ['f9.h']
+ deps_match(self, deps, headers)
+
+
class dictify_CPPDEFINESTestCase(unittest.TestCase):
def runTest(self):
"""Make sure single-item tuples convert correctly.
@@ -497,35 +541,29 @@ class dictify_CPPDEFINESTestCase(unittest.TestCase):
This is a regression test: AppendUnique turns sequences into
lists of tuples, and dictify could gack on these.
"""
- env = DummyEnvironment(CPPDEFINES=(("VALUED_DEFINE", 1), ("UNVALUED_DEFINE", )))
- d = SCons.Scanner.C.dictify_CPPDEFINES(env)
- expect = {'VALUED_DEFINE': 1, 'UNVALUED_DEFINE': None}
- assert d == expect
-
-def suite():
- suite = unittest.TestSuite()
- suite.addTest(CScannerTestCase1())
- suite.addTest(CScannerTestCase2())
- suite.addTest(CScannerTestCase3())
- suite.addTest(CScannerTestCase4())
- suite.addTest(CScannerTestCase5())
- suite.addTest(CScannerTestCase6())
- suite.addTest(CScannerTestCase8())
- suite.addTest(CScannerTestCase9())
- suite.addTest(CScannerTestCase10())
- suite.addTest(CScannerTestCase11())
- suite.addTest(CScannerTestCase12())
- suite.addTest(CScannerTestCase13())
- suite.addTest(CScannerTestCase14())
- suite.addTest(CScannerTestCase15())
- suite.addTest(CConditionalScannerTestCase1())
- suite.addTest(CConditionalScannerTestCase2())
- suite.addTest(CConditionalScannerTestCase3())
- suite.addTest(dictify_CPPDEFINESTestCase())
- return suite
+ with self.subTest():
+ env = DummyEnvironment(CPPDEFINES=[("VALUED_DEFINE", 1), ("UNVALUED_DEFINE", )])
+ d = SCons.Scanner.C.dictify_CPPDEFINES(env)
+ expect = {'VALUED_DEFINE': 1, 'UNVALUED_DEFINE': None}
+ self.assertEqual(d, expect)
+
+ # string-valued define in a sequence
+ with self.subTest():
+ env = DummyEnvironment(CPPDEFINES=["STRING=VALUE"])
+ d = SCons.Scanner.C.dictify_CPPDEFINES(env)
+ expect = {'STRING': 'VALUE'}
+ self.assertEqual(d, expect)
+
+ # string-valued define by itself
+ with self.subTest():
+ env = DummyEnvironment(CPPDEFINES="STRING=VALUE")
+ d = SCons.Scanner.C.dictify_CPPDEFINES(env)
+ expect = {'STRING': 'VALUE'}
+ self.assertEqual(d, expect)
+
if __name__ == "__main__":
- TestUnit.run(suite())
+ unittest.main()
# Local Variables:
# tab-width:4