-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Sim: Add crash and stress to auto updater
- Loading branch information
1 parent
a90c2dd
commit 6f83e0c
Showing
4 changed files
with
27 additions
and
22 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,22 @@ | ||
# use: | ||
var crashCode = nil; | ||
var crash_start = func { | ||
removelistener(lsnr); | ||
crashCode = CrashAndStress.new([0,1,2]); | ||
crashCode.start(); | ||
} | ||
|
||
var lsnr = setlistener("sim/signals/fdm-initialized", crash_start); | ||
|
||
# test: | ||
var repair = func { | ||
crashCode.repair(); | ||
}; | ||
|
||
var exp = func { | ||
crashCode.abandon(); | ||
}; | ||
|
||
var eject = func { | ||
crashCode.eject(); | ||
}; |
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
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
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