diff options
author | Jan Mercl <0xjnml@gmail.com> | 2017-06-06 14:55:48 +0200 |
---|---|---|
committer | Jan Mercl <0xjnml@gmail.com> | 2017-06-06 14:55:48 +0200 |
commit | 05b533496a8384343734af2700e5818a30ff91eb (patch) | |
tree | 6c64f0d880113cd417c991a8c0977ed7045c4fb5 /all_linux_test.go | |
parent | 8c183b526ba8f225684f6431836138a9cffae509 (diff) |
Use usleep.
modified: all_linux_test.go
modified: generator.go
modified: internal/bin/bin_linux_386.go
modified: internal/bin/bin_linux_amd64.go
modified: sqlite.go
Diffstat (limited to 'all_linux_test.go')
-rw-r--r-- | all_linux_test.go | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/all_linux_test.go b/all_linux_test.go index a3dc5f2..ae09653 100644 --- a/all_linux_test.go +++ b/all_linux_test.go @@ -58,13 +58,7 @@ func init() { // ============================================================================ var ( - // Add "-tags virtual.profile" to the command. - profileAll = flag.Bool("profile", false, "") - profileFunctions = flag.Bool("profile_functions", false, "") - profileInstructions = flag.Bool("profile_instructions", false, "") - profileLines = flag.Bool("profile_lines", false, "") - profileRate = flag.Int("profile_rate", 1000, "") - recsPerSec = flag.Bool("recs_per_sec_as_mbps", false, "Show records per second as MB/s.") + recsPerSec = flag.Bool("recs_per_sec_as_mbps", false, "Show records per second as MB/s.") ) func tempDB(t testing.TB) (string, *sql.DB) { |