Artifact 48b6bc2150eb9f753325c8af788b5f05d80fd1aa:
- Executable file tests/fullrun/tests/exit_0/main.sh — part of check-in [4aeb75f670] at 2018-02-21 16:57:39 on branch v1.65 — Added license header to remaining files. (user: mrwellan, size: 962) [annotate] [blame] [check-ins using] [more...]
- Executable file tests/fullrun/tests/priority_1/main.sh — part of check-in [4aeb75f670] at 2018-02-21 16:57:39 on branch v1.65 — Added license header to remaining files. (user: mrwellan, size: 962) [annotate] [blame] [check-ins using]
- Executable file tests/fullrun/tests/priority_10/main.sh — part of check-in [4aeb75f670] at 2018-02-21 16:57:39 on branch v1.65 — Added license header to remaining files. (user: mrwellan, size: 962) [annotate] [blame] [check-ins using]
- Executable file tests/fullrun/tests/priority_10_waiton_1/main.sh — part of check-in [4aeb75f670] at 2018-02-21 16:57:39 on branch v1.65 — Added license header to remaining files. (user: mrwellan, size: 962) [annotate] [blame] [check-ins using]
- Executable file tests/fullrun/tests/priority_4/main.sh — part of check-in [4aeb75f670] at 2018-02-21 16:57:39 on branch v1.65 — Added license header to remaining files. (user: mrwellan, size: 962) [annotate] [blame] [check-ins using]
- Executable file tests/fullrun/tests/priority_5/main.sh — part of check-in [4aeb75f670] at 2018-02-21 16:57:39 on branch v1.65 — Added license header to remaining files. (user: mrwellan, size: 962) [annotate] [blame] [check-ins using]
- Executable file tests/fullrun/tests/priority_6/main.sh — part of check-in [4aeb75f670] at 2018-02-21 16:57:39 on branch v1.65 — Added license header to remaining files. (user: mrwellan, size: 962) [annotate] [blame] [check-ins using]
- Executable file tests/fullrun/tests/priority_7/main.sh — part of check-in [4aeb75f670] at 2018-02-21 16:57:39 on branch v1.65 — Added license header to remaining files. (user: mrwellan, size: 962) [annotate] [blame] [check-ins using]
- Executable file tests/fullrun/tests/priority_9/main.sh — part of check-in [4aeb75f670] at 2018-02-21 16:57:39 on branch v1.65 — Added license header to remaining files. (user: mrwellan, size: 962) [annotate] [blame] [check-ins using]
#!/bin/bash # This file is part of Megatest. # # Megatest 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. # # Megatest 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 Megatest. If not, see <http://www.gnu.org/licenses/>. # a bunch of steps in 2 second increments for i in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17;do $MT_MEGATEST -step step$i :state start :status running -setlog results$i.html sleep 2 $MT_MEGATEST -step step$i :state end :status 0 done exit 0