summaryrefslogtreecommitdiff
path: root/test/Interactive
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/Interactive
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/Interactive')
-rw-r--r--test/Interactive/variant_dir.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Interactive/variant_dir.py b/test/Interactive/variant_dir.py
index f36bd0a4..7f2c42f4 100644
--- a/test/Interactive/variant_dir.py
+++ b/test/Interactive/variant_dir.py
@@ -41,10 +41,10 @@ marker_2 = test.workpath('markers', '2')
test.write(['work', 'SConstruct'], """\
# build the plugin binaries
-basepath = str(Dir('#').abspath)
+basepath = str(Dir('#').get_abspath())
env = Environment()
env.Append(BASEPATH=basepath)
-env.Append(ENV = {'BASEPATH' : str(Dir('#').abspath)})
+env.Append(ENV = {'BASEPATH' : str(Dir('#').get_abspath())})
SConscript( 'sub1/SConscript',
variant_dir = 'build',
duplicate=False,