Closed
Bug 460305
Opened 17 years ago
Closed 17 years ago
Add ability to run .abc files directly (no compilation) to runtests.py testconfig file.
Categories
(Tamarin Graveyard :: Virtual Machine, enhancement)
Tamarin Graveyard
Virtual Machine
Tracking
(Not tracked)
VERIFIED
FIXED
People
(Reporter: cpeyer, Assigned: brbaker)
Details
Attachments
(1 file)
4.48 KB,
patch
|
cpeyer
:
review+
|
Details | Diff | Splinter Review |
Currently, the buildbot acceptance test runs delete all .abc files before recompiling and then running the .as files.
This is due to the mops.as test checkin (tamarin-redux: 1005:56691cf41db3) which can not be compiled by the current asc.jar. This requires the .abc to be run without compilation.
Currently only applies to Tamarin-Redux.
Reporter | ||
Comment 1•17 years ago
|
||
Correction: mops checkin was 1004:e9e705244c92
Notes from dan schaffer:
I was thinking we could just add a special setting to not recompile the test. Either create mops.nocompile or make a setting in mops.args. There are two places in runtests.py to fix. 1) --rebuild would not delete mops.abc and not attempt to rebuild mops.as 2) -f would not try to rebuild mops.as.
Comment 2•17 years ago
|
||
could just rename mops.abc to something else, like mops.abckeep. the vm doesn't care what the file extension is, afaik
Assignee | ||
Comment 3•17 years ago
|
||
Might be easiest to just:
- rename mops.abc to mops.abc_ (this will no longer be removed on testsuite cleanup)
- add a file called mops.as that is just a dummy shell (need to have something to compile)
- add mops.vm_args to append the mops.abc_ binary to the call to the dummy mops.abc (this will end up running the blank mops.abc and the real test mops.abc_)
This crutch should get it working until the mops opcodes are added into ASC.
Assignee | ||
Comment 4•17 years ago
|
||
Pull code from tamarin-tracing that allows you to have a <test.as>.avm_args file that contains additional arguments to pass to the shell when running the test abc file.
This change implements comment #3
Reporter | ||
Updated•17 years ago
|
Attachment #343541 -
Flags: review?(cpeyer) → review+
Assignee | ||
Comment 5•17 years ago
|
||
Pushed into tamarin-redux as 1012:2e8109418623
Assignee | ||
Updated•17 years ago
|
Status: ASSIGNED → RESOLVED
Closed: 17 years ago
Resolution: --- → FIXED
Assignee | ||
Updated•16 years ago
|
Attachment #343541 -
Attachment is patch: true
Attachment #343541 -
Attachment mime type: application/octet-stream → text/plain
Assignee | ||
Updated•16 years ago
|
Status: RESOLVED → VERIFIED
You need to log in
before you can comment on or make changes to this bug.
Description
•