summaryrefslogtreecommitdiffstats
path: root/libcxx/test/support
diff options
context:
space:
mode:
authorEric Fiselier <eric@efcs.ca>2017-02-07 21:21:17 +0000
committerEric Fiselier <eric@efcs.ca>2017-02-07 21:21:17 +0000
commit357120e8a2bf774f01595cfeb522f432270d0b77 (patch)
treec8e463821be020e5cc778afc56bc929ae69aa3b5 /libcxx/test/support
parent86d8bd1da5eb34b922ff6d1d615bfbabd5d0f188 (diff)
downloadbcm5719-llvm-357120e8a2bf774f01595cfeb522f432270d0b77.tar.gz
bcm5719-llvm-357120e8a2bf774f01595cfeb522f432270d0b77.zip
fix python3 syntax error
llvm-svn: 294355
Diffstat (limited to 'libcxx/test/support')
-rw-r--r--libcxx/test/support/filesystem_dynamic_test_helper.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/test/support/filesystem_dynamic_test_helper.py b/libcxx/test/support/filesystem_dynamic_test_helper.py
index 1f48c952798..d2b2810d099 100644
--- a/libcxx/test/support/filesystem_dynamic_test_helper.py
+++ b/libcxx/test/support/filesystem_dynamic_test_helper.py
@@ -75,7 +75,7 @@ def create_fifo(source):
def create_socket(source):
- mode = 0600|stat.S_IFSOCK
+ mode = 0o600 | stat.S_IFSOCK
os.mknod(sanitize(source), mode)
OpenPOWER on IntegriCloud