summaryrefslogtreecommitdiffstats
path: root/test/CPPDEFINES
diff options
context:
space:
mode:
authorMats Wichmann <mats@linux.com>2018-04-23 18:38:07 (GMT)
committerMats Wichmann <mats@linux.com>2018-04-24 04:32:05 (GMT)
commit649ea1bfa22f40b4ea4c5da7b8210b1efe2062b4 (patch)
tree046da98c4f783c9d13fe062d3967fec2e86a0ace /test/CPPDEFINES
parent68a6ce2891e5bb9c07094c7f4452a0e0950546d3 (diff)
downloadSCons-649ea1bfa22f40b4ea4c5da7b8210b1efe2062b4.zip
SCons-649ea1bfa22f40b4ea4c5da7b8210b1efe2062b4.tar.gz
SCons-649ea1bfa22f40b4ea4c5da7b8210b1efe2062b4.tar.bz2
Change bug references from tigris -> github
Signed-off-by: Mats Wichmann <mats@linux.com>
Diffstat (limited to 'test/CPPDEFINES')
-rw-r--r--test/CPPDEFINES/append.py6
-rw-r--r--test/CPPDEFINES/pkg-config.py4
2 files changed, 5 insertions, 5 deletions
diff --git a/test/CPPDEFINES/append.py b/test/CPPDEFINES/append.py
index 7973f22..874fceb 100644
--- a/test/CPPDEFINES/append.py
+++ b/test/CPPDEFINES/append.py
@@ -43,7 +43,7 @@ env_1738_2.Append(CPPDEFINES={'value' : '1'})
print(env_1738_2.subst('$_CPPDEFFLAGS'))
#env_1738_2.Object('test_1738_2', 'main.c')
-# http://scons.tigris.org/issues/show_bug.cgi?id=2300
+# https://github.com/SCons/scons/issues/2300
env_2300_1 = Environment(CPPDEFINES = 'foo', CPPDEFPREFIX='-D')
env_2300_1.Append(CPPDEFINES='bar')
print(env_2300_1.subst('$_CPPDEFFLAGS'))
@@ -52,8 +52,8 @@ env_2300_2 = Environment(CPPDEFINES = ['foo'], CPPDEFPREFIX='-D') # note the lis
env_2300_2.Append(CPPDEFINES='bar')
print(env_2300_2.subst('$_CPPDEFFLAGS'))
-# http://scons.tigris.org/issues/show_bug.cgi?id=1152
-# http://scons.tigris.org/issues/show_bug.cgi?id=2900
+# https://github.com/SCons/scons/issues/1152
+# https://github.com/SCons/scons/issues/2900
# Python3 dicts dont preserve order. Hence we supply subclass of OrderedDict
# whose __str__ and __repr__ act like a normal dict.
from collections import OrderedDict
diff --git a/test/CPPDEFINES/pkg-config.py b/test/CPPDEFINES/pkg-config.py
index 42f38b6..4096934 100644
--- a/test/CPPDEFINES/pkg-config.py
+++ b/test/CPPDEFINES/pkg-config.py
@@ -70,7 +70,7 @@ class OrderedPrintingDict(OrderedDict):
def __semi_deepcopy__(self):
return self.copy()
""" + """
-# http://scons.tigris.org/issues/show_bug.cgi?id=2671
+# https://github.com/SCons/scons/issues/2671
# Passing test cases
env_1 = Environment(CPPDEFINES=[('DEBUG','1'), 'TEST'])
env_1.ParseConfig('PKG_CONFIG_PATH=. %(pkg_config_path)s --cflags bug')
@@ -89,7 +89,7 @@ env_4 = Environment(CPPDEFINES=OrderedPrintingDict([('DEBUG', 1), ('TEST', None)
env_4.MergeFlags('-DSOMETHING -DVARIABLE=2')
print(env_4.subst('$_CPPDEFFLAGS'))
-# http://scons.tigris.org/issues/show_bug.cgi?id=1738
+# https://github.com/SCons/scons/issues/1738
env_1738_1 = Environment(tools=['default'])
env_1738_1.ParseConfig('PKG_CONFIG_PATH=. %(pkg_config_path)s --cflags --libs bug')
env_1738_1.Append(CPPDEFINES={'value' : '1'})