fixes + test hw edge cases

This commit is contained in:
2022-09-23 00:16:42 +00:00
parent fba158d4d1
commit 2ea722c81c
2 changed files with 21 additions and 1 deletions

View File

@@ -19,6 +19,21 @@ colineard tx colinearcore new-auction asdf asdf 2000 uusdc $(now + 8200000) \
-y --from bob \
| expect_fail "Can't create auction above max lease period"
colineard tx colinearcore new-auction asdf asdf 2000 uusdc $(now + 3700) \
'[]' '[]' 4 0 1000 50 \
-y --from bob \
| expect_fail "Can't create an auction with 0 GPUs"
colineard tx colinearcore new-auction asdf asdf 2000 uusdc $(now + 3700) \
'[]' '["gtx-1050-ti"]' 0 0 1000 50 \
-y --from bob \
| expect_fail "Can't create an auction with 0 cores"
colineard tx colinearcore new-auction asdf asdf 2000 uusdc $(now + 3700) \
'[]' '["gtx-1050-ti"]' 0 0 1000 50 \
-y --from bob \
| expect_fail "Can't create an auction with sub-25GB storage"
before=$(get_balance $BOB uusdc)
colineard tx colinearcore new-auction asdf asdf 2000 uusdc $(now + 3700) \