Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix 3C test that fails only on Windows. (#1194)
The test 3C/multiple_tu.c fails only on Windows. The problem is the test script. The script generates a command file in JSON format by piping a small generated Python program into the Python interpreter. The program contains strings for file names. On Windows, the directory separator is a backslash character (`\`). The backslash is interpreted as a string escape character. This results in JSON with incorrect paths. Use raw Python strings for the file names so that Python leaves them alone.
- Loading branch information