Home
last modified time | relevance | path

Searched refs:results (Results 1 – 25 of 553) sorted by relevance

12345678910>>...23

/freebsd/contrib/kyua/doc/
H A Dresults-files-report-example.mdoc1 .Ss Workflow with results files
9 ~/.kyua/store/results.usr_tests.20140731-150500-196784.db
10 ~/.kyua/store/results.usr_tests.20140731-151730-997451.db
14 generate a report for the results of the
19 cd /usr/tests && kyua __REPORT_COMMAND__ --results-file=LATEST
20 kyua __REPORT_COMMAND__ --results-file=/usr/tests
21 kyua __REPORT_COMMAND__ --results-file=usr_tests
22 kyua __REPORT_COMMAND__ --results-file=usr_tests.20140731-151730-997451
29 --results-file=usr_tests.20140731-150500-196784
31 --results-file=~/.kyua/store/results.usr_tests.20140731-150500-196784.db
/freebsd/contrib/googletest/googletest/test/
H A Dgoogletest-test-part-test.cc184 TestPartResultArray results; in TEST_F() local
185 EXPECT_EQ(0, results.size()); in TEST_F()
191 TestPartResultArray results; in TEST_F() local
192 results.Append(r1_); in TEST_F()
193 EXPECT_EQ(1, results.size()); in TEST_F()
194 EXPECT_STREQ("Failure 1", results.GetTestPartResult(0).message()); in TEST_F()
200 TestPartResultArray results; in TEST_F() local
201 results.Append(r1_); in TEST_F()
202 results.Append(r2_); in TEST_F()
203 EXPECT_EQ(2, results.size()); in TEST_F()
[all …]
/freebsd/contrib/ntp/sntp/unity/auto/
H A Dunity_test_summary.rb30 results = @targets.map {|target| target.gsub(/\\/,'/')}
36 results.each do |result_file|
97 results = { :failures => [], :ignores => [], :successes => [] }
102 when 'IGNORE' then results[:ignores] << line_out
103 when 'FAIL' then results[:failures] << line_out
104 when 'PASS' then results[:successes] << line_out
107 return results
135 results = Dir[targets]
136 … raise "No *.testpass, *.testfail, or *.testresults files found in '#{targets}'" if results.empty?
137 uts.set_targets(results)
H A Dunity_test_summary.py22 results = []
24 results.append(target.replace('\\', '/'))
30 for result_file in results:
86 results = { 'failures': [], 'ignores': [], 'successes': [] }
97 results['ignores'].append(line_out)
99 results['failures'].append(line_out)
101 results['successes'].append(line_out)
102 return results
/freebsd/contrib/kyua/engine/
H A Dscanner_test.cpp144 std::set< engine::scan_result > results; in yield_all() local
148 results.insert(result.get()); in yield_all()
152 return results; in yield_all()
187 const std::set< engine::scan_result > results = yield_all(scanner); in ATF_TEST_CASE_BODY() local
188 ATF_REQUIRE_EQ(exp_results, results); in ATF_TEST_CASE_BODY()
216 const std::set< engine::scan_result > results = yield_all(scanner); in ATF_TEST_CASE_BODY() local
217 ATF_REQUIRE_EQ(exp_results, results); in ATF_TEST_CASE_BODY()
239 const std::set< engine::scan_result > results = yield_all(scanner); in ATF_TEST_CASE_BODY() local
240 ATF_REQUIRE_EQ(exp_results, results); in ATF_TEST_CASE_BODY()
271 const std::set< engine::scan_result > results = yield_all(scanner); in ATF_TEST_CASE_BODY() local
[all …]
/freebsd/contrib/llvm-project/libunwind/src/
H A DDwarfParser.hpp162 int arch, PrologInfo *results);
419 int arch, PrologInfo *results) { in parseFDEInstructions() argument
498 results->setRegister(reg, kRegisterInCFA, offset, initialState); in parseFDEInstructions()
510 results->restoreRegisterToInitialState(reg, initialState); in parseFDEInstructions()
521 results->setRegisterLocation(reg, kRegisterUnused, initialState); in parseFDEInstructions()
535 results->setRegisterLocation(reg, kRegisterUnused, initialState); in parseFDEInstructions()
551 results->setRegister(reg, kRegisterInRegister, (int64_t)reg2, in parseFDEInstructions()
564 entry->info = *results; in parseFDEInstructions()
575 *results = top->info; in parseFDEInstructions()
590 results->cfaRegister = (uint32_t)reg; in parseFDEInstructions()
[all …]
/freebsd/contrib/kyua/drivers/
H A Dscan_results_test.cpp201 std::set< std::string > results; in ATF_TEST_CASE_BODY() local
202 results.insert("/root/dir/prog_0:case_0:skipped:Count 0:4:10"); in ATF_TEST_CASE_BODY()
203 results.insert("/root/dir/prog_0:case_1:skipped:Count 1:4:11"); in ATF_TEST_CASE_BODY()
204 results.insert("/root/dir/prog_1:case_0:skipped:Count 0:4:11"); in ATF_TEST_CASE_BODY()
205 results.insert("/root/dir/prog_1:case_1:skipped:Count 1:4:12"); in ATF_TEST_CASE_BODY()
206 ATF_REQUIRE_EQ(results, hooks._results); in ATF_TEST_CASE_BODY()
232 std::set< std::string > results; in ATF_TEST_CASE_BODY() local
233 results.insert("/root/dir/prog_1:case_0:skipped:Count 0:4:11"); in ATF_TEST_CASE_BODY()
234 results.insert("/root/dir/prog_1:case_1:skipped:Count 1:4:12"); in ATF_TEST_CASE_BODY()
235 results.insert("/root/dir/prog_1:case_2:skipped:Count 2:4:13"); in ATF_TEST_CASE_BODY()
[all …]
/freebsd/sys/rpc/rpcsec_gss/
H A Drpcsec_gss_prot.c227 struct mbuf *results, *message, *mic; in xdr_rpc_gss_unwrap_data() local
232 results = *resultsp; in xdr_rpc_gss_unwrap_data()
243 len = get_uint32(&results); in xdr_rpc_gss_unwrap_data()
244 message = results; in xdr_rpc_gss_unwrap_data()
245 results = m_split(results, len, M_WAITOK); in xdr_rpc_gss_unwrap_data()
246 if (!results) { in xdr_rpc_gss_unwrap_data()
254 cklen = get_uint32(&results); in xdr_rpc_gss_unwrap_data()
255 if (!results) { in xdr_rpc_gss_unwrap_data()
260 mic = results; in xdr_rpc_gss_unwrap_data()
284 len = get_uint32(&results); in xdr_rpc_gss_unwrap_data()
[all …]
/freebsd/contrib/kyua/cli/
H A Dcmd_test.cpp146 const layout::results_id_file_pair results = layout::new_db( in run() local
154 kyuafile_path(cmdline), build_root_path(cmdline), results.second, in run()
173 if (!results.first.empty()) { in run()
174 ui->out(F("Results file id is %s") % results.first); in run()
176 ui->out(F("Results saved to %s") % results.second); in run()
195 if (!results.first.empty()) { in run()
196 ui->out(F("Results file id is %s") % results.first); in run()
198 ui->out(F("Results saved to %s") % results.second); in run()
/freebsd/sys/contrib/openzfs/tests/test-runner/bin/
H A Dzts-report.py.in420 results, logdir = process_results(args.logfile) variable
422 if not results:
431 for test in list(results.keys()):
432 if results[test] == "PASS":
436 if results[test] == "SKIP" and test != setup:
442 if (test in known and results[test] in known[test][0]):
444 elif test in maybe and results[test] in maybe[test][0]:
445 if results[test] == 'SKIP' or args.maybes:
485 if test not in results or results[test] != "PASS":
/freebsd/contrib/bc/src/
H A Dprogram.c215 bc_vec_push(&p->results, &res); in bc_program_pushBigdig()
451 *r = bc_vec_item_rev(&p->results, idx); in bc_program_operand()
486 if (BC_ERR(!BC_PROG_STACK(&p->results, idx + 2))) in bc_program_binPrep()
493 assert(BC_PROG_STACK(&p->results, idx + 2)); in bc_program_binPrep()
601 if (BC_ERR(!BC_PROG_STACK(&p->results, idx + 1))) in bc_program_prep()
608 assert(BC_PROG_STACK(&p->results, idx + 1)); in bc_program_prep()
624 BcResult* res = bc_vec_pushEmpty(&p->results); in bc_program_prepResult()
808 ip.len = p->results.len; in bc_program_read()
853 BcResult* r = bc_vec_top(&p->results); in bc_program_rand()
964 if (BC_ERR(!BC_PROG_STACK(&p->results, idx + 1))) in bc_program_print()
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/
H A DAnalyses.def28 ANALYSIS_DIAGNOSTICS(HTML, "html", "Output analysis results using HTML",
33 "Output analysis results using HTML (not allowing for multi-file bugs)",
36 ANALYSIS_DIAGNOSTICS(PLIST, "plist", "Output analysis results using Plists",
41 "Output analysis results using Plists (allowing for multi-file bugs)",
45 "Output analysis results using HTML wrapped with Plists",
48 ANALYSIS_DIAGNOSTICS(SARIF, "sarif", "Output analysis results using SARIF",
52 "Output analysis results using both SARIF and HTML "
56 ANALYSIS_DIAGNOSTICS(TEXT, "text", "Text output of analysis results to stderr",
/freebsd/contrib/netbsd-tests/bin/sh/
H A Dt_varval.sh120 rm -f results || :
122 atf_check -s exit:0 -o save:results -e empty ${TEST_SH}
123 test -z $( grep -v "^13$" results ) ||
137 rm -f results || :
139 atf_check -s exit:0 -o save:results -e empty ${TEST_SH}
142 test $( wc -l < results ) -eq 256 ||
144 test $(wc -c < results) -eq $(( 255 * 14 )) ||
/freebsd/contrib/bc/tests/
H A Dscript.sh168 results="$scriptdir/$name.txt"
172 elif [ -f "$results" ]; then
173 res="$results"
189 printf 'Could not find %s to generate results; skipping %s script %s\n' "$d" "$d" "$f"
193 printf 'Generating %s results...' "$f"
197 printf '%s\n' "$halt" 2> /dev/null | "$d" "$s" > "$results"
202 printf '%s\n' "$halt" 2> /dev/null | "$d" "$s" | sed -n -f "$testdir/script.sed" > "$results"
205 res="$results"
H A Dtest.sh68 results="$testdir/$d/${t}_results.txt"
138 # If the results do not exist, generate..
139 if [ ! -f "$results" ]; then
140 printf 'Generating %s %s results...' "$d" "$t"
141 printf '%s\n' "$halt" 2> /dev/null | "$d" $options "$name" > "$results"
168 checktest "$d" "$err" "$t" "$results" "$out"
/freebsd/sys/contrib/openzfs/contrib/zcp/
H A Dautosnap.lua5 results = {}
57 results[ds_snap_name] = err
66 for ds, err in pairs(results) do
75 return results
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_program/
H A Dzfs_program_json.ksh69 results = {}
70 results["succeeded"] = succeeded
71 results["failed"] = failed
72 return results
/freebsd/contrib/bmake/unit-tests/
H A Ddepsrc-meta.mk20 check-results:
27 @${MAKE} -r -f ${MAKEFILE} check-results
30 @${MAKE} -r -f ${MAKEFILE} check-results -j1
/freebsd/contrib/unbound/compat/
H A Dgetentropy_osx.c207 uint8_t results[SHA512_DIGEST_LENGTH]; in getentropy_fallback() local
397 HD(results); in getentropy_fallback()
409 SHA512_Final(results, &ctx); in getentropy_fallback()
410 memcpy((char *)buf + i, results, min(sizeof(results), len - i)); in getentropy_fallback()
411 i += min(sizeof(results), len - i); in getentropy_fallback()
414 explicit_bzero(results, sizeof results); in getentropy_fallback()
H A Dgetentropy_solaris.c255 uint8_t results[SHA512_DIGEST_LENGTH]; in getentropy_fallback() local
419 HD(results); in getentropy_fallback()
430 SHA512_Final(results, &ctx); in getentropy_fallback()
431 memcpy((char *)buf + i, results, min(sizeof(results), len - i)); in getentropy_fallback()
432 i += min(sizeof(results), len - i); in getentropy_fallback()
434 memset(results, 0, sizeof results); in getentropy_fallback()
/freebsd/tools/tools/commitsdb/
H A Dquery_commit_db46 my @results;
54 push @results, "$name $rev";
62 foreach my $r (sort @results) {
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/cmd/scripts/
H A Ddtest.pl50 %results = ();
523 $results{$dtrace} = {
691 foreach $key (keys %results) {
692 my $passed = $results{$key}{"passed"};
693 my $bypassed = $results{$key}{"bypassed"};
694 my $failed = $results{$key}{"failed"};
695 my $total = $results{$key}{"total"};
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DLanguage.h57 ResultSet &results, bool append = true);
63 ResultSet &results) = 0;
100 ResultSet &results) override;
114 ResultSet &results) override { in Find_Impl() argument
117 if (scavenger && scavenger->Find(exe_scope, key, results, append)) in Find_Impl()
137 ResultSet &results) override { in Find_Impl() argument
142 success = scavenger->Find(exe_scope, key, results, append) || success; in Find_Impl()
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/
H A DSymbolFilePDB.cpp267 auto results = m_global_scope_up->findAllChildren<PDBSymbolCompiland>(); in ParseCompileUnitAtIndex() local
268 if (!results) in ParseCompileUnitAtIndex()
270 auto compiland_up = results->getChildAtIndex(index); in ParseCompileUnitAtIndex()
470 std::unique_ptr<IPDBEnumSymbols> results; in ParseTypes() local
474 results = raw_sym.findAllChildren(tag); in ParseTypes()
475 if (!results || results->getChildCount() == 0) in ParseTypes()
477 while (auto symbol = results->getNext()) { in ParseTypes()
536 auto results = m_global_scope_up->findAllChildren<PDBSymbolData>(); in ParseVariablesForContext() local
537 if (results && results->getChildCount()) { in ParseVariablesForContext()
538 while (auto result = results->getNext()) { in ParseVariablesForContext()
[all …]
/freebsd/contrib/kyua/integration/
H A Dcmd_report_html_test.sh153 --results-file="$(cat dbfile_name1)"
158 --results-file="$(cat dbfile_name2)"
166 kyua report-html --results-file=foo
214 --results-filter=passed
249 --results-filter=passed,foo-bar

12345678910>>...23