diff options
author | John Wiegley <johnw@newartisans.com> | 2013-06-08 18:55:11 -0500 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2013-06-08 18:55:14 -0500 |
commit | 7183dabc84362a745bf0381cd1cceb303338565f (patch) | |
tree | d790a563de1d0c758100c15ba5b17053d82f0973 /test/LedgerHarness.py | |
parent | 9d64d14fd3a67461e722dda1db793478aa3ce785 (diff) | |
download | fork-ledger-7183dabc84362a745bf0381cd1cceb303338565f.tar.gz fork-ledger-7183dabc84362a745bf0381cd1cceb303338565f.tar.bz2 fork-ledger-7183dabc84362a745bf0381cd1cceb303338565f.zip |
Fix tests when running under Jenkins
Diffstat (limited to 'test/LedgerHarness.py')
-rwxr-xr-x | test/LedgerHarness.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/LedgerHarness.py b/test/LedgerHarness.py index 39a31286..fce8fa2a 100755 --- a/test/LedgerHarness.py +++ b/test/LedgerHarness.py @@ -45,7 +45,7 @@ class LedgerHarness: sys.exit(1) self.ledger = os.path.abspath(argv[1]) - self.sourcepath = os.path.abspath(argv[2]) + self.sourcepath = os.path.realpath(os.path.abspath(argv[2])) self.succeeded = 0 self.failed = 0 self.verify = '--verify' in argv |