Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5bd5b9 commit 5430fa7Copy full SHA for 5430fa7
1 file changed
tools/triage_tests.py
@@ -309,7 +309,9 @@ def reject(self):
309
"""
310
Reject this test by copying the expected result to the source tree.
311
312
- copy_file(self.dir / self.expected, self.destdir / self.generated)
+ expected = self.dir / self.expected
313
+ if not expected.is_symlink():
314
+ copy_file(expected, self.destdir / self.generated)
315
self.status = 'reject'
316
317
0 commit comments