shithub: mc

ref: 60a248049f2cdcb1e7a53e9d77374769b4436545
dir: /libcryptohash/test/tests/

View raw version
FLAGS=-I../
mkdir -p tmpout
EXTRA_SRC=printhash.myr
# Format:
# [B|F] testname [E|P] result
#    [B|F]: Compiler outcome.
#	B: Expect that this test will build.
#	F: Expect that this test will not build.
#    testname: Test case
#	The test that will run. We will try to
#	compile 'testname.myr' to 'testname',
#	and then execute it, verifying the result
#    [E|P|C]: Result type
#	E tells us that the result is an exit status
#	P tells us that the result is on stdout,
#         and should be compared to the value on the
#         line
#	C tells us that the result is on stdout,
#         and should be compared to the contents of
#         the file passed on the line.
#    result: Result value
#	What we compare with. This should be self-
#	evident.
B md5-test	C
B sha1-test	C
B sha256-test	C
B sha224-test	C
B sha512-test	C
B sha384-test	C