summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authoranatoly techtonik <techtonik@gmail.com>2014-05-28 07:23:35 (GMT)
committeranatoly techtonik <techtonik@gmail.com>2014-05-28 07:23:35 (GMT)
commit4655bd958070a5c37475f21ab51de62f557a816b (patch)
tree26fb1c343932b2b6f3dc4b9fbd8f7b0a5a096a8e /test
parentbebd12923cbb9632875c8a6367efb23a74f9c1f8 (diff)
downloadSCons-4655bd958070a5c37475f21ab51de62f557a816b.zip
SCons-4655bd958070a5c37475f21ab51de62f557a816b.tar.gz
SCons-4655bd958070a5c37475f21ab51de62f557a816b.tar.bz2
Expand references to tigris.org bug tracker
Diffstat (limited to 'test')
-rw-r--r--test/Depends/no-Builder.py2
-rw-r--r--test/ExecuteInvalidateCache.py3
-rw-r--r--test/Fortran/USE-MODULE-CASEINSENS.py3
-rw-r--r--test/Libs/SharedLibrary-update-deps.py2
-rw-r--r--test/Scanner/Dir.py2
-rw-r--r--test/VariantDir/include-subdir.py2
6 files changed, 8 insertions, 6 deletions
diff --git a/test/Depends/no-Builder.py b/test/Depends/no-Builder.py
index 2d49756..48ab724 100644
--- a/test/Depends/no-Builder.py
+++ b/test/Depends/no-Builder.py
@@ -40,7 +40,7 @@ file2 = File('file2')
env.Depends(file1, [[file2, 'file3']])
# Verify that a "hidden" file created by another action causes the
# action to run when an explicit Dependency is specified.
-# See tigris.org issue 2647.
+# See http://scons.tigris.org/issues/show_bug.cgi?id=2647
env.Depends('hidden', 'file4.out')
env.Command('file4.out', 'file4.in',
[Copy('$TARGET', '$SOURCE'), Touch('hidden')])
diff --git a/test/ExecuteInvalidateCache.py b/test/ExecuteInvalidateCache.py
index 88ae393..a22c5ea 100644
--- a/test/ExecuteInvalidateCache.py
+++ b/test/ExecuteInvalidateCache.py
@@ -26,7 +26,8 @@ __revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
"""
Test the Execute() functions clears the memoized values of affected target Nodes
-when used with Delete(). Derived from Tigris issue 1307.
+when used with Delete(). Derived from
+http://scons.tigris.org/issues/show_bug.cgi?id=1307
"""
import TestSCons
diff --git a/test/Fortran/USE-MODULE-CASEINSENS.py b/test/Fortran/USE-MODULE-CASEINSENS.py
index 79d5125..44c03fe 100644
--- a/test/Fortran/USE-MODULE-CASEINSENS.py
+++ b/test/Fortran/USE-MODULE-CASEINSENS.py
@@ -26,7 +26,8 @@ __revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
# This test tests whether a file that defines a module "a" and
# then uses it with a different case ("A") works. Pre-2.0, this
-# gave a spurious dependency cycle error. See Tigris issue #2574.
+# gave a spurious dependency cycle error.
+# See http://scons.tigris.org/issues/show_bug.cgi?id=2574
import TestSCons
diff --git a/test/Libs/SharedLibrary-update-deps.py b/test/Libs/SharedLibrary-update-deps.py
index 5394bc7..076e3ad 100644
--- a/test/Libs/SharedLibrary-update-deps.py
+++ b/test/Libs/SharedLibrary-update-deps.py
@@ -26,7 +26,7 @@ __revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
"""
Test that SharedLibrary() updates when a different lib is linked, even if it has the same md5.
-This is Tigris bug #2903.
+This is http://scons.tigris.org/issues/show_bug.cgi?id=2903
"""
import sys
diff --git a/test/Scanner/Dir.py b/test/Scanner/Dir.py
index 120e08f..86b80e9 100644
--- a/test/Scanner/Dir.py
+++ b/test/Scanner/Dir.py
@@ -27,7 +27,7 @@ __revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
"""
Verify that a simple scanner that returns Dir nodes works correctly.
-Submitted as tigris.org issue #2534.
+Submitted as http://scons.tigris.org/issues/show_bug.cgi?id=2534
"""
import TestSCons
diff --git a/test/VariantDir/include-subdir.py b/test/VariantDir/include-subdir.py
index 5ddd623..d616bba 100644
--- a/test/VariantDir/include-subdir.py
+++ b/test/VariantDir/include-subdir.py
@@ -32,7 +32,7 @@ we have to make sure that the file gets copied to the variant dir. (This
was not the case for 0.98.5 and earlier)
Test case supplied by Jared Grubb, based on a minimal example supplied
-by Ali Tofigh, filed as issue #2121 at tigris.org.
+by Ali Tofigh, filed as http://scons.tigris.org/issues/show_bug.cgi?id=2121
"""
import TestSCons