c2a5303eeb
Running these tests from integration_tests' TestMain() was awkward because they were run twice with unchanged settings. integration_tests tests everything with OpenSSL and with native Go crypto, but this does not take affect for the example filesystems. To make this work, test_helpers is also split into its own package.
11 lines
178 B
Bash
Executable File
11 lines
178 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Run the synthetic benchmarks that are built into gocryptfs using
|
|
# "go test".
|
|
|
|
set -eu
|
|
|
|
source build.bash
|
|
|
|
go test ./tests/integration_tests -bench=. -defaultonly
|