diff options
Diffstat (limited to 'test/Options/ListOption.py')
-rw-r--r-- | test/Options/ListOption.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/Options/ListOption.py b/test/Options/ListOption.py index 3a95b8a..5611e40 100644 --- a/test/Options/ListOption.py +++ b/test/Options/ListOption.py @@ -28,6 +28,7 @@ __revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__" Test the ListOption canned Option type. """ +import os import os.path import string @@ -79,7 +80,7 @@ test.run() check(['all', '1', 'gl ical qt x11', 'gl ical qt x11', "['gl ical qt x11']"]) -test.must_match(test.workpath('scons.options'), "shared = 'all'\n") +test.must_match(test.workpath('scons.options'), "shared = 'all'"+os.linesep) check(['all', '1', 'gl ical qt x11', 'gl ical qt x11', "['gl ical qt x11']"]) |