[ RUN ] TestPageSet.testSimpleSet
Traceback (most recent call last):
File "E:\b\build\slave\Chromium_Windows_Perf_Annotator\build\src\tools\telemetry\telemetry\page\page_set_unittest.py",
line 39, in testSimpleSet
ps = page_set.PageSet.FromFile(f2.name)
File "E:\b\build\slave\Chromium_Windows_Perf_Annotator\build\src\tools\telemetry\telemetry\page\page_set.py",
line 35, in FromFile
with open(file_path, 'r') as f:
IOError: [Errno 13] Permission
denied: 'c:\\users\\chrome~2\\appdata\\local\\temp\\tmpqmrjsk'
--
You received this message because this project is configured to send all
issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings
chro...@googlecode.com
unread,
May 24, 2013, 2:35:59 PM5/24/13
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
[Telemetry] Fix TestPageSet.testSimpleSet on windows.
1. You cannot open a file for writing and reading at the same time on
windows.
So close the writing file before opening it for reading.
2. Fix json backslash escaping issue.