File: test.sh

package info (click to toggle)
golang-github-influxdata-tdigest 0.0~git20180711.a7d76c6-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 140 kB
  • sloc: cpp: 509; sh: 9; makefile: 4
file content (14 lines) | stat: -rwxr-xr-x 191 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash

set -e

DIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
cd "$DIR"

go run gen.go
go run main.go
g++ -o cpp.test main.cpp
./cpp.test 2>/dev/null
rm cpp.test

go run validate.go