Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/thsmi/sieve.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorThomas Schmid <schmid-thomas@gmx.net>2020-06-05 00:50:24 +0300
committerThomas Schmid <schmid-thomas@gmx.net>2020-06-05 00:50:24 +0300
commit262cd2b5b3650ad4e0b5cc7e0ed6e9337bd7877d (patch)
tree191d16e90b8e029562da9fa591c5b14397145a97 /tests
parent7759bf9e38421ada90e15d47998ba631f1fed363 (diff)
Parsing quoted strings failed on cornercases.
Diffstat (limited to 'tests')
-rwxr-xr-xtests/tests/tests.js18
1 files changed, 12 insertions, 6 deletions
diff --git a/tests/tests/tests.js b/tests/tests/tests.js
index c588aef8..14dcd636 100755
--- a/tests/tests/tests.js
+++ b/tests/tests/tests.js
@@ -45,16 +45,19 @@
tests.set("sieve-elements", {
script: "./../common/libSieve/RFC5228/tests/SieveRFC5228SnippetTest.js",
extend: "rfc5228"
- }
- );
+ });
+
+ tests.set("sieve-atoms", {
+ script: "./../common/libSieve/RFC5228/tests/SieveRFC5228AtomsTest.js",
+ extend: "rfc5228"
+ });
// Specialized profiles which contain the tests...
tests.set("matchTypes", {
script: "./../common/libSieve/RFC5228/tests/SieveMatchTypeTest.js",
extend: "rfc5228"
- }
- );
+ });
tests.set("variables", {
script: "./../common/libSieve/variables/tests/SieveVariablesTest.js",
@@ -109,7 +112,9 @@
script: "./../common/libSieve/include/tests/SieveIncludeTest.js",
extend: "rfc5228",
require: [
- "./../common/libSieve/include/logic/SieveInclude.js"
+ "./../common/libSieve/include/logic/SieveInclude.js",
+ "./../common/libSieve/variables/logic/SieveVariables.js",
+ "./../common/libSieve/relational/logic/SieveRelational.js"
]
});
@@ -150,7 +155,8 @@
extend: "rfc5228",
require: [
"./../common/libSieve/imapflags/logic/SieveImapFlags.js",
- "./../common/libSieve/variables/logic/SieveVariables.js"
+ "./../common/libSieve/variables/logic/SieveVariables.js",
+ "./../common/libSieve/relational/logic/SieveRelational.js"
]
});