We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a8bc71 commit 7feec57Copy full SHA for 7feec57
test/test_expander.py
@@ -2,7 +2,7 @@
2
3
import unittest
4
from logging import Logger, basicConfig, getLogger
5
-from os import getenv, environ
+from os import getenv, environ, pathsep
6
from pathlib import Path
7
from shutil import copy
8
from subprocess import run
@@ -46,6 +46,9 @@ def test_env_value(self):
46
env = environ.copy()
47
env['CPLUS_INCLUDE_PATH'] = str(Path.cwd().resolve())
48
self.compile_test(Path('test/expander/include_all.cpp'), env=env)
49
+ env['CPLUS_INCLUDE_PATH'] = pathsep + \
50
+ pathsep + str(Path.cwd().resolve()) + pathsep
51
+ self.compile_test(Path('test/expander/include_all.cpp'), env=env)
52
53
54
if __name__ == "__main__":
0 commit comments