aboutsummaryrefslogtreecommitdiffstats
path: root/src/tests
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2017-12-11 18:54:16 -0500
committerJack Lloyd <[email protected]>2017-12-11 18:54:16 -0500
commit48502ed20525e631f5a565877747d0fa1debbfcc (patch)
tree9b087faad728f9b147c41f8e4b860e43b3ae28bb /src/tests
parente9671863382f3fbba73685fbeb2d78b7c04155ff (diff)
Fix missing comma in test runner [ci skip]
This ended up trying to run the "aeadkdf" suite first, and then the actual aead and kdf suites didn't end up running until later.
Diffstat (limited to 'src/tests')
-rw-r--r--src/tests/test_runner.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tests/test_runner.cpp b/src/tests/test_runner.cpp
index 11df727c9..321a1e1da 100644
--- a/src/tests/test_runner.cpp
+++ b/src/tests/test_runner.cpp
@@ -104,7 +104,7 @@ int Test_Runner::run(const std::vector<std::string>& requested_tests,
run the "essentials" to smoke test, then everything else in
alphabetical order.
*/
- req = {"block", "stream", "hash", "mac", "modes", "aead"
+ req = {"block", "stream", "hash", "mac", "modes", "aead",
"kdf", "pbkdf", "hmac_drbg", "util"
};