aboutsummaryrefslogtreecommitdiff
path: root/src/tests/strhash.cpp
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2006-10-11 15:54:09 +0000
committerMike Buland <eichlan@xagasoft.com>2006-10-11 15:54:09 +0000
commita77e41eee42b99282c05d268479ba5ebb11dc095 (patch)
treed211c2e3978ba6ed6c91b8b430a85d59d50079f9 /src/tests/strhash.cpp
parent745875139b5ee46e469927d410364bfeeedb2995 (diff)
downloadlibbu++-a77e41eee42b99282c05d268479ba5ebb11dc095.tar.gz
libbu++-a77e41eee42b99282c05d268479ba5ebb11dc095.tar.bz2
libbu++-a77e41eee42b99282c05d268479ba5ebb11dc095.tar.xz
libbu++-a77e41eee42b99282c05d268479ba5ebb11dc095.zip
Rearranged the tests, now it's like the old style, which I like more for some
reason.
Diffstat (limited to 'src/tests/strhash.cpp')
-rw-r--r--src/tests/strhash.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/tests/strhash.cpp b/src/tests/strhash.cpp
new file mode 100644
index 0000000..790c5b6
--- /dev/null
+++ b/src/tests/strhash.cpp
@@ -0,0 +1,12 @@
1#include <stdio.h>
2#include "hashfunctionstring.h"
3
4int main( int argc, char *argv[] )
5{
6 HashFunctionString h;
7
8 printf("\"%s\": %d\n", argv[1], h.hash( argv[1] ) );
9
10 return 0;
11}
12