diff options
| author | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2021-03-16 15:23:40 +0200 |
|---|---|---|
| committer | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2021-03-16 15:23:40 +0200 |
| commit | 6ccd2ee79d33669baea3d5d49b3fc5597e32d177 (patch) | |
| tree | 4f69894b5c12f9dc461a8542895ac443662f4633 /Software/Visual_Studio/Tango.Emulations | |
| parent | c1105285f1c0d3051a0bef4e70a4a345a7ed42cc (diff) | |
| download | Tango-6ccd2ee79d33669baea3d5d49b3fc5597e32d177.tar.gz Tango-6ccd2ee79d33669baea3d5d49b3fc5597e32d177.zip | |
Changed bit result Pending to Skipped.
Changed status display order.
Increased BIT fetch timeout to 5 min.
Diffstat (limited to 'Software/Visual_Studio/Tango.Emulations')
| -rw-r--r-- | Software/Visual_Studio/Tango.Emulations/Emulators/MachineEmulator.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Software/Visual_Studio/Tango.Emulations/Emulators/MachineEmulator.cs b/Software/Visual_Studio/Tango.Emulations/Emulators/MachineEmulator.cs index 1f8c34358..a4639f874 100644 --- a/Software/Visual_Studio/Tango.Emulations/Emulators/MachineEmulator.cs +++ b/Software/Visual_Studio/Tango.Emulations/Emulators/MachineEmulator.cs @@ -1808,7 +1808,8 @@ namespace Tango.Emulations.Emulators if (rnd < 25) { - result.Status = BitResultStatus.Pending; + result.Status = BitResultStatus.Skipped; + result.Description = "Skipped"; } else if (rnd >= 25 && rnd < 50) { |
