mirror of
https://github.com/joohoi/acme-dns.git
synced 2024-12-22 10:33:44 +07:00
41b2ff5940
* Quick fixes to bring framework up to date * Script for test running, api tests need complete rewrite * Removed govendor from tests * Fix for AutoTLS
8 lines
175 B
Bash
Executable File
8 lines
175 B
Bash
Executable File
#!/bin/sh
|
|
# go test doesn't play well with noexec /tmp
|
|
sudo mkdir /gotmp
|
|
sudo mount tmpfs -t tmpfs /gotmp
|
|
TMPDIR=/gotmp go test -v -race
|
|
sudo umount /gotmp
|
|
sudo rm -rf /gotmp
|