Jacob Kopczynski | 436d156 | 2020-06-21 13:37:23 -0700 | [diff] [blame] | 1 | #!/bin/bash -e |
| 2 | # Copyright 2020 The Chromium OS Authors. All rights reserved. |
| 3 | # Use of this source code is governed by a BSD-style license that can be |
| 4 | # found in the LICENSE file. |
| 5 | |
Jacob Kopczynski | 6455fd6 | 2020-06-21 13:37:23 -0700 | [diff] [blame] | 6 | set -x |
| 7 | MY_PATH=$(readlink -f ~/trunk/infra/tnull/metadata/all-tests.json) |
| 8 | tnull generate-full-request -output_json "${MY_PATH}" |
| 9 | tnull run-steps -input_json "${MY_PATH}" |
| 10 | if $? |
| 11 | then |
| 12 | echo "pass" |
Jacob Kopczynski | 6b2ae3c | 2020-07-20 15:29:14 -0700 | [diff] [blame] | 13 | exit 0 |
Jacob Kopczynski | 6455fd6 | 2020-06-21 13:37:23 -0700 | [diff] [blame] | 14 | else |
| 15 | echo "fail" |
Jacob Kopczynski | 6b2ae3c | 2020-07-20 15:29:14 -0700 | [diff] [blame] | 16 | exit 1 |
Jacob Kopczynski | 6455fd6 | 2020-06-21 13:37:23 -0700 | [diff] [blame] | 17 | fi |