diff options
author | EuAndreh <eu@euandre.org> | 2025-05-15 07:47:17 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2025-05-15 07:47:17 -0300 |
commit | 5f5eec5b39467f8f061566cee818cf68ca78c70c (patch) | |
tree | 965ba69061b1459d46b81ac9dec2b73ad4f5556c | |
parent | Setup i18n with gotext(0) (diff) | |
download | scrypt-5f5eec5b39467f8f061566cee818cf68ca78c70c.tar.gz scrypt-5f5eec5b39467f8f061566cee818cf68ca78c70c.tar.xz |
rm -rf tests/functional/version/
-rw-r--r-- | deps.mk | 9 | ||||
l--------- | tests/functional/version/main.go | 1 | ||||
-rw-r--r-- | tests/functional/version/scrypt.go | 13 |
3 files changed, 0 insertions, 23 deletions
@@ -2,7 +2,6 @@ libs.go = \ src/scrypt.go \ tests/benchmarks/hash/scrypt.go \ tests/functional/hash-and-check/scrypt.go \ - tests/functional/version/scrypt.go \ tests/fuzz/api/scrypt.go \ tests/scrypt.go \ @@ -10,7 +9,6 @@ mains.go = \ src/main.go \ tests/benchmarks/hash/main.go \ tests/functional/hash-and-check/main.go \ - tests/functional/version/main.go \ tests/fuzz/api/main.go \ tests/main.go \ @@ -33,11 +31,9 @@ sources.po = \ functional/lib.go = \ tests/functional/hash-and-check/scrypt.go \ - tests/functional/version/scrypt.go \ functional/main.go = \ tests/functional/hash-and-check/main.go \ - tests/functional/version/main.go \ fuzz/lib.go = \ tests/fuzz/api/scrypt.go \ @@ -57,8 +53,6 @@ tests/benchmarks/hash/main.a: tests/benchmarks/hash/main.go tests/benchmarks/hash/scrypt.a: tests/benchmarks/hash/scrypt.go tests/functional/hash-and-check/main.a: tests/functional/hash-and-check/main.go tests/functional/hash-and-check/scrypt.a: tests/functional/hash-and-check/scrypt.go -tests/functional/version/main.a: tests/functional/version/main.go -tests/functional/version/scrypt.a: tests/functional/version/scrypt.go tests/fuzz/api/main.a: tests/fuzz/api/main.go tests/fuzz/api/scrypt.a: tests/fuzz/api/scrypt.go tests/main.a: tests/main.go @@ -66,18 +60,15 @@ tests/scrypt.a: tests/scrypt.go src/main.bin: src/main.a tests/benchmarks/hash/main.bin: tests/benchmarks/hash/main.a tests/functional/hash-and-check/main.bin: tests/functional/hash-and-check/main.a -tests/functional/version/main.bin: tests/functional/version/main.a tests/fuzz/api/main.bin: tests/fuzz/api/main.a tests/main.bin: tests/main.a src/main.bin-check: src/main.bin tests/benchmarks/hash/main.bin-check: tests/benchmarks/hash/main.bin tests/functional/hash-and-check/main.bin-check: tests/functional/hash-and-check/main.bin -tests/functional/version/main.bin-check: tests/functional/version/main.bin tests/fuzz/api/main.bin-check: tests/fuzz/api/main.bin tests/main.bin-check: tests/main.bin src/main.a: src/$(NAME).a tests/benchmarks/hash/main.a: tests/benchmarks/hash/$(NAME).a tests/functional/hash-and-check/main.a: tests/functional/hash-and-check/$(NAME).a -tests/functional/version/main.a: tests/functional/version/$(NAME).a tests/fuzz/api/main.a: tests/fuzz/api/$(NAME).a tests/main.a: tests/$(NAME).a diff --git a/tests/functional/version/main.go b/tests/functional/version/main.go deleted file mode 120000 index f67563d..0000000 --- a/tests/functional/version/main.go +++ /dev/null @@ -1 +0,0 @@ -../../main.go
\ No newline at end of file diff --git a/tests/functional/version/scrypt.go b/tests/functional/version/scrypt.go deleted file mode 100644 index 5133f8c..0000000 --- a/tests/functional/version/scrypt.go +++ /dev/null @@ -1,13 +0,0 @@ -package scrypt - -import ( - g "gobang" -) - - - -func MainTest() { - g.Testing("we can get the lib version", func() { - g.TAssertEqual(len(Version) >= 5, true) - }) -} |