aboutsummaryrefslogtreecommitdiffstats
path: root/src/tests/test_passhash.cpp
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2017-09-24 17:48:42 -0400
committerJack Lloyd <[email protected]>2017-09-24 17:48:42 -0400
commitf53db790a5a2a7ffb770199bcf42fcdcf948e737 (patch)
treeff466c755cd6264ef53212ca430a6e69f7eb615a /src/tests/test_passhash.cpp
parent49f652c44edb1d6aa40cdd45ac940fc1d294c88b (diff)
Move passhash9 and bcrypt tests to passhash/ subdir
[ci skip]
Diffstat (limited to 'src/tests/test_passhash.cpp')
-rw-r--r--src/tests/test_passhash.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tests/test_passhash.cpp b/src/tests/test_passhash.cpp
index 1519506ef..7f42bce4a 100644
--- a/src/tests/test_passhash.cpp
+++ b/src/tests/test_passhash.cpp
@@ -22,7 +22,7 @@ namespace {
class Bcrypt_Tests final : public Text_Based_Test
{
public:
- Bcrypt_Tests() : Text_Based_Test("bcrypt.vec", "Password,Passhash") {}
+ Bcrypt_Tests() : Text_Based_Test("passhash/bcrypt.vec", "Password,Passhash") {}
Test::Result run_one_test(const std::string&, const VarMap& vars) override
{
@@ -76,7 +76,7 @@ BOTAN_REGISTER_TEST("bcrypt", Bcrypt_Tests);
class Passhash9_Tests final : public Text_Based_Test
{
public:
- Passhash9_Tests() : Text_Based_Test("passhash9.vec", "Password,Passhash,PRF") {}
+ Passhash9_Tests() : Text_Based_Test("passhash/passhash9.vec", "Password,Passhash,PRF") {}
Test::Result run_one_test(const std::string&, const VarMap& vars) override
{