summaryrefslogtreecommitdiffstats
path: root/test/Repository
diff options
context:
space:
mode:
authorDaniel Moody <dmoody256@gmail.com>2018-05-25 21:43:06 (GMT)
committerDaniel Moody <dmoody256@gmail.com>2018-05-25 21:44:57 (GMT)
commit510f8bdfea8338856216e99329692d42fbdfc469 (patch)
tree5e5d2b1f96a44fe71210f1a64c5a6ec4a76d8c16 /test/Repository
parentea6fc1fcb2de8a99a7f8a68d51f5969cdc729d2c (diff)
downloadSCons-510f8bdfea8338856216e99329692d42fbdfc469.zip
SCons-510f8bdfea8338856216e99329692d42fbdfc469.tar.gz
SCons-510f8bdfea8338856216e99329692d42fbdfc469.tar.bz2
pr-3052: updated the expected result to work for windows
Diffstat (limited to 'test/Repository')
-rw-r--r--test/Repository/RMIC.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/Repository/RMIC.py b/test/Repository/RMIC.py
index 392e6ef..e08c716 100644
--- a/test/Repository/RMIC.py
+++ b/test/Repository/RMIC.py
@@ -29,6 +29,7 @@ Test building Java applications when using Repositories.
"""
import TestSCons
+import os
python = TestSCons.python
@@ -302,7 +303,7 @@ public class Foo2 extends UnicastRemoteObject implements Hello {
test.run(chdir = 'work1', options = opts, arguments = ".")
expect = [
- ' src/Foo1.java src/Foo2.java',
+ ' src' + os.sep + 'Foo1.java src' + os.sep + 'Foo2.java',
' com.sub.foo.Foo1 com.sub.foo.Foo2',
]