-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
71 additions
and
38 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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import { Suite } from "../util/testBench/testing"; | ||
import { kvSyncTests } from "./actors/systems/kvSync/ddTests"; | ||
import { executionVisualizerTests } from "./executionVisualizer/ddTests"; | ||
|
||
export function appsTests(writeResults: boolean): { [name: string]: Suite } { | ||
return { | ||
kvSync: kvSyncTests(writeResults), | ||
executionVisualizer: executionVisualizerTests(writeResults), | ||
}; | ||
} |
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,27 @@ | ||
import { Suite } from "../util/testBench/testing"; | ||
import { | ||
coreTestsCommon, | ||
coreTestsIncremental, | ||
coreTestsSimple, | ||
joinOrderTests, | ||
parserTests, | ||
} from "./ddTests"; | ||
import { incrTests } from "./incremental/ddTests"; | ||
import { optTests } from "./opt/optTests"; | ||
import { prettyPrintTests } from "./prettyTest"; | ||
import { unifyTests } from "./unifyTests"; | ||
|
||
export function coreTests(writeResults: boolean): { [name: string]: Suite } { | ||
return { | ||
unifyTests, | ||
parserTests: parserTests(writeResults), | ||
// TODO: it does seem kind of bad to have two test suites that use the same set of dd files | ||
coreTestsSimple: coreTestsSimple(writeResults), | ||
coreTestsIncremental: coreTestsIncremental(writeResults), | ||
coreTestsCommon: coreTestsCommon(writeResults), | ||
joinOrderTests: joinOrderTests(writeResults), | ||
incrTests: incrTests(writeResults), | ||
prettyPrintTests, | ||
optTests: optTests(writeResults), | ||
}; | ||
} |
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import { Suite } from "../util/testBench/testing"; | ||
import { languageTests } from "./ddTests"; | ||
import { nativeTests } from "./languages/dl/nativeTests"; | ||
import { dl2Tests } from "./languages/dl2/compiler/ddTests"; | ||
import { parserlibTests } from "./parserlib/ddTests"; | ||
import { sourcePositionsTests } from "./sourcePositionsTest"; | ||
|
||
export function lwbTests(writeResults: boolean): { [name: string]: Suite } { | ||
return { | ||
parserlibTests: parserlibTests(writeResults), | ||
languageTests: languageTests(writeResults), | ||
lwbNativeDatalogTests: nativeTests, | ||
dl2Tests: dl2Tests(writeResults), | ||
sourcePositionsTests, | ||
}; | ||
} |
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,8 @@ | ||
import { Suite } from "./testBench/testing"; | ||
import { treeTests } from "./treeTest"; | ||
|
||
export function utilTests(writeResults: boolean): { [name: string]: Suite } { | ||
return { | ||
treeTests, | ||
}; | ||
} |