2020-06-24 10:52:23 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2020-07-07 12:58:09 +00:00
|
|
|
"github.com/filecoin-project/oni/lotus-soup/paych"
|
2020-07-01 16:29:09 +00:00
|
|
|
"github.com/filecoin-project/oni/lotus-soup/testkit"
|
2020-07-02 15:44:13 +00:00
|
|
|
|
2020-07-07 12:58:09 +00:00
|
|
|
"github.com/testground/sdk-go/run"
|
2020-06-24 10:52:23 +00:00
|
|
|
)
|
|
|
|
|
2020-07-01 16:29:09 +00:00
|
|
|
var cases = map[string]interface{}{
|
2020-07-02 09:49:27 +00:00
|
|
|
"deals-e2e": testkit.WrapTestEnvironment(dealsE2E),
|
|
|
|
"deals-stress-test": testkit.WrapTestEnvironment(dealStressTest),
|
2020-07-02 09:50:49 +00:00
|
|
|
"drand-halting": testkit.WrapTestEnvironment(dealsE2E),
|
2020-07-07 12:58:09 +00:00
|
|
|
"paych-stress": testkit.WrapTestEnvironment(paych.Stress),
|
2020-06-24 10:52:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func main() {
|
2020-07-07 16:36:22 +00:00
|
|
|
sanityCheck()
|
|
|
|
|
2020-07-01 16:29:09 +00:00
|
|
|
run.InvokeMap(cases)
|
2020-06-24 10:52:23 +00:00
|
|
|
}
|