summaryrefslogtreecommitdiff
path: root/test/site_scons
diff options
context:
space:
mode:
authorDirk Baechle <dl9obn@darc.de>2015-08-06 23:50:31 +0200
committerDirk Baechle <dl9obn@darc.de>2015-08-06 23:50:31 +0200
commit13347dff82754e520e42a22669bb8b7cd8cd6b2a (patch)
tree4a4d0d6b99d47221bcab4166c90adbf041de07e1 /test/site_scons
parent6e8fbb1b6111941690fcf531fdda2f5c888f9bc0 (diff)
downloadscons-13347dff82754e520e42a22669bb8b7cd8cd6b2a.tar.gz
- fixed several tests and tools that still used Node attributes directly
(found by disabling the __getattr__ in Node/FS.py)
Diffstat (limited to 'test/site_scons')
-rw-r--r--test/site_scons/sysdirs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/site_scons/sysdirs.py b/test/site_scons/sysdirs.py
index c05ef676..f50485ab 100644
--- a/test/site_scons/sysdirs.py
+++ b/test/site_scons/sysdirs.py
@@ -39,7 +39,7 @@ test = TestSCons.TestSCons()
test.write('SConstruct', """
import SCons.Script
-SCons.Script.Main.test_load_all_site_scons_dirs(Dir('.').path)
+SCons.Script.Main.test_load_all_site_scons_dirs(Dir('.').get_internal_path())
""")
test.run(arguments = '-Q .')