Skip to content

Commit 1e06c09

Browse files
committed
Remove call to run-test-application
Want to be able to run these tests via the opendylan/Makefile's `make check` with Testworks' `--load` option. `run-test-application` calls `exit-application` which is incompatible with that.
1 parent df05199 commit 1e06c09

File tree

1 file changed

+0
-16
lines changed

1 file changed

+0
-16
lines changed

test/hash-algorithms-test.dylan

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -97,19 +97,3 @@ define test sha512-test ()
9797
check-equal("SHA512 of 7", "97FB4EC472F3CB698B9C3C12A12768483E5B62BCDAD934280750B4FA4701E5E0550A80BB0828342C19631BA55A55E1CEE5DE2FDA91FC5D40E7BEE1D4E6D415B3", hexdigest(sha512(test-7)));
9898
check-equal("SHA512 of 8", "D399507BBF5F2D0DA51DB1FF1FC51C1C9FF1DE0937E00D01693B240E84FCC3400601429F45C297ACC6E8FCF1E4E4ABE9FF21A54A0D3D88888F298971BD206CD5", hexdigest(sha512(test-8)));
9999
end;
100-
101-
102-
103-
define suite hash-algorithms-test-suite ()
104-
test md5-test;
105-
test sha1-test;
106-
test sha256-test;
107-
test sha224-test;
108-
test sha384-test;
109-
test sha512-test;
110-
end;
111-
112-
begin
113-
run-test-application(hash-algorithms-test-suite)
114-
end;
115-

0 commit comments

Comments
 (0)