Lines Matching +full:a +full:- +full:9

20 # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
30 # Subcommand to strip out the durations and timestamps in a report.
35 # YYYY-MM-DDTHH:MM:SS.ssssssZ depending on their original format.
39 # atf_check ... -x kyua report "| ${utils_strip_times}"
41 # Use the utils_install_times_wrapper function to create a 'kyua' wrapper
44 utils_strip_times='sed -E \
45 -e "s,( |\[|\")[0-9][0-9]*\.[0-9][0-9][0-9](s]|s|\"),\1S.UUU\2,g" \
46 -e "s,[0-9]{8}-[0-9]{6}-[0-9]{6},YYYYMMDD-HHMMSS-ssssss,g" \
47-e "s,[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}\.[0-9]{6}Z,YYYY-MM-DDTHH:MM:SS.ssssssZ…
51 # Same as utils_strip_times but avoids stripping timestamp-based report IDs.
55 # replaced by the fixed string YYYY-MM-DDTHH:MM:SS.ssssssZ.
57 utils_strip_times_but_not_ids='sed -E \
58 -e "s,( |\[|\")[0-9][0-9]*\.[0-9][0-9][0-9](s]|s|\"),\1S.UUU\2,g" \
59-e "s,[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}\.[0-9]{6}Z,YYYY-MM-DDTHH:MM:SS.ssssssZ…
63 # Computes the results id for a test suite run.
65 # The computed path is "generic" in the sense that it does not include a
66 # real timestamp: it only includes a placeholder. This function should be
73 echo "${test_suite_id}.YYYYMMDD-HHMMSS-ssssss"
77 # Computes the results file for a test suite run.
79 # The computed path is "generic" in the sense that it does not include a
80 # real timestamp: it only includes a placeholder. This function should be
90 # Copies a helper binary from the source directory to the work directory.
94 # a directory name or a file name.
99 ln -s "$(atf_get_srcdir)"/helpers/"${name}" "${destination}"
103 # Creates a 'kyua' binary in the path that strips timing data off the output.
109 [ ! -x kyua ] || return
125 # Creates a 'kyua' binary in the path that makes the output of 'test' stable.
133 [ ! -x kyua ] || return
145 grep -v '[^ ]*:[^ ]*' kyua.tmpout2 >kyua.tmpout4
155 # Defines a test case with a default head.
171 if [ ${#} -gt 0 ]; then
176 echo "${path}" | sed -e 's,^/,,' -e 's,/,_,g'