-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update test to include cases with missing tags
- Loading branch information
1 parent
9a11985
commit ab5c403
Showing
2 changed files
with
61 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
{ | ||
"id": "time_missing_type", | ||
"metadata": {}, | ||
"steps": [ | ||
{ | ||
"args": [ | ||
{ "type": "number", "value": 30 } | ||
], | ||
"description": "Epoch-relative activate step for test.mod into engine 2 with missing time type.", | ||
"engine": 2, | ||
"epoch": "TEST_EPOCH", | ||
"sequence": "d:/eng/test.mod", | ||
"time": { "tag": "00:00:01.000" }, | ||
"type": "activate" | ||
}, | ||
{ | ||
"args": [ | ||
{ "type": "number", "value": 30 } | ||
], | ||
"description": "Command-relative activate step for test.mod into engine 2 with missing time tag.", | ||
"engine": 2, | ||
"epoch": "TEST_EPOCH", | ||
"sequence": "d:/eng/test.mod", | ||
"time": { "type": "COMMAND_RELATIVE" }, | ||
"type": "activate" | ||
}, | ||
{ | ||
"args": [ | ||
{ "type": "number", "value": 30 } | ||
], | ||
"description": "Absolute activate step for test.mod into engine 2 with missing time tag.", | ||
"engine": 2, | ||
"epoch": "TEST_EPOCH", | ||
"sequence": "d:/eng/test.mod", | ||
"time": { "type": "ABSOLUTE" }, | ||
"type": "activate" | ||
}, | ||
{ | ||
"args": [ | ||
{ "type": "number", "value": 30 } | ||
], | ||
"description": "Block-relative activate step for test.mod into engine 2 with missing time tag.", | ||
"engine": 2, | ||
"epoch": "TEST_EPOCH", | ||
"sequence": "d:/eng/test.mod", | ||
"time": { "type": "BLOCK_RELATIVE" }, | ||
"type": "activate" | ||
}, | ||
{ | ||
"args": [ | ||
{ "type": "number", "value": 30 } | ||
], | ||
"description": "Epoch-relative activate step for test.mod into engine 2 with missing time tag.", | ||
"engine": 2, | ||
"epoch": "TEST_EPOCH", | ||
"sequence": "d:/eng/test.mod", | ||
"time": { "type": "EPOCH_RELATIVE" }, | ||
"type": "activate" | ||
} | ||
] | ||
} |
This file was deleted.
Oops, something went wrong.