-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove 5s default QuickCheck timeout and allow 0 timeout
- Loading branch information
1 parent
005d116
commit ba10fdc
Showing
9 changed files
with
47 additions
and
10 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
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 |
---|---|---|
@@ -1 +1 @@ | ||
{"type":"object","properties":{"config":{"type":"object","properties":{"timeout":{"type":"integer","minimum":1,"description":"The timeout of a QuickCheck execution in seconds."},"obligations":{"type":"array","items":{"type":"integer","minimum":1},"description":"A list of proof obligation indexes to run QuickCheck on. When left undefined or as an empty list, the default behavior is to check all proof obligations left after search filtering."}},"required":["timeout"],"additionalProperties":false,"description":"General configuration."},"strategies":{"type":"array","items":{"type":"object","properties":{},"additionalProperties":true,"description":"A single strategy configuration."},"description":"Configuration of QuickCheck strategies."}},"required":["config"],"additionalProperties":false,"description":"Configuration of the QuickCheck plugin.","$schema":"http://json-schema.org/draft-07/schema#"} | ||
{"type":"object","properties":{"config":{"type":"object","properties":{"timeout":{"type":"integer","minimum":0,"description":"The timeout of a QuickCheck execution in milliseconds."},"obligations":{"type":"array","items":{"type":"integer","minimum":1},"description":"A list of proof obligation indexes to run QuickCheck on. When left undefined or as an empty list, the default behavior is to check all proof obligations left after search filtering."}},"additionalProperties":false,"description":"General configuration."},"strategies":{"type":"array","items":{"type":"object","properties":{},"additionalProperties":true,"description":"A single strategy configuration."},"description":"Configuration of QuickCheck strategies."}},"required":["config"],"additionalProperties":false,"description":"Configuration of the QuickCheck plugin.","$schema":"http://json-schema.org/draft-07/schema#"} |
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,20 @@ | ||
// SPDX-License-Identifier: GPL-3.0-or-later | ||
|
||
// import { Uri, WorkspaceFolder, commands, workspace } from "vscode"; | ||
// import { ClientManager } from "../ClientManager"; | ||
// import AutoDisposable from "../helper/AutoDisposable"; | ||
|
||
// import * as Util from "../util/Util"; | ||
|
||
// // TODO: Write base class with shared logic for annotations and plugins. | ||
// export abstract class ManagementBase extends AutoDisposable { | ||
// constructor(protected readonly clientManager: ClientManager, contextKey: string, command: string) { | ||
// super(); | ||
// commands.executeCommand("setContext", contextKey, true); | ||
// Util.registerCommand(this._disposables, command, (inputUri: Uri) => this.handleManage(workspace.getWorkspaceFolder(inputUri))); | ||
// } | ||
|
||
// protected handleManage(wsFolder: WorkspaceFolder): Promise<void> { | ||
// return; | ||
// } | ||
// } |
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
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