-
Notifications
You must be signed in to change notification settings - Fork 94
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3602 from hjoliver/cycle-point-format
suite-state point format conversion fix
- Loading branch information
Showing
10 changed files
with
103 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
#!/bin/bash | ||
# THIS FILE IS PART OF THE CYLC SUITE ENGINE. | ||
# Copyright (C) NIWA & British Crown (Met Office) & Contributors. | ||
# | ||
# This program is free software: you can redistribute it and/or modify | ||
# it under the terms of the GNU General Public License as published by | ||
# the Free Software Foundation, either version 3 of the License, or | ||
# (at your option) any later version. | ||
# | ||
# This program is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
# GNU General Public License for more details. | ||
# | ||
# You should have received a copy of the GNU General Public License | ||
# along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
#------------------------------------------------------------------------------- | ||
# Test "cylc suite-state" cycle point format conversion, when the target suite | ||
# sets no explicit cycle point format, and the CLI does (the reverse of 06.t). | ||
|
||
. "$(dirname "$0")/test_header" | ||
#------------------------------------------------------------------------------- | ||
set_test_number 5 | ||
#------------------------------------------------------------------------------- | ||
init_suite "${TEST_NAME_BASE}" <<'__SUITERC__' | ||
[cylc] | ||
UTC mode = True | ||
# (Use default cycle point format) | ||
[scheduling] | ||
initial cycle point = 20100101T0000Z | ||
[[graph]] | ||
R1 = foo | ||
[runtime] | ||
[[foo]] | ||
script = true | ||
__SUITERC__ | ||
#------------------------------------------------------------------------------- | ||
TEST_NAME="${TEST_NAME_BASE}-run" | ||
suite_run_ok "${TEST_NAME}" cylc run --debug --no-detach "${SUITE_NAME}" | ||
#------------------------------------------------------------------------------- | ||
TEST_NAME=${TEST_NAME_BASE}-cli-poll | ||
run_ok "${TEST_NAME}" cylc suite-state "${SUITE_NAME}" -p 2010-01-01T00:00Z \ | ||
--task=foo --status=succeeded | ||
contains_ok "${TEST_NAME}.stdout" <<__OUT__ | ||
polling for 'succeeded': satisfied | ||
__OUT__ | ||
#------------------------------------------------------------------------------- | ||
TEST_NAME=${TEST_NAME_BASE}-cli-dump | ||
run_ok "${TEST_NAME}" cylc suite-state "${SUITE_NAME}" -p 2010-01-01T00:00Z | ||
contains_ok "${TEST_NAME}.stdout" <<__OUT__ | ||
foo, 20100101T0000Z, succeeded | ||
__OUT__ | ||
#------------------------------------------------------------------------------- | ||
purge_suite "${SUITE_NAME}" | ||
#------------------------------------------------------------------------------- | ||
exit 0 |
This file was deleted.
Oops, something went wrong.