Home
last modified time | relevance | path

Searched refs:failmsg (Results 1 – 25 of 244) sorted by relevance

12345678910

/dports/shells/modernish/modernish-0.16.5/lib/modernish/tst/
H A Dlocal.t14 failmsg=$#
28 failmsg=$#
226 thisshellhas QRK_LOCALSET && failmsg=${failmsg:+$failmsg, }'QRK_LOCALSET wrongly detected'
228 thisshellhas QRK_LOCALINH && failmsg=${failmsg:+$failmsg, }'QRK_LOCALINH wrongly detected'
235 || failmsg=${failmsg:+$failmsg, }'QRK_LOCALINH not detected'
242 || failmsg=${failmsg:+$failmsg, }'QRK_LOCALSET not detected'
249 || failmsg=${failmsg:+$failmsg, }'QRK_LOCALSET2 not detected'
270 || failmsg=${failmsg:+$failmsg, }'QRK_LOCALUNS2 not detected' ;;
273 ( 2 ) failmsg=${failmsg:+$failmsg, }'unknown quirk (2)' ;;
274 ( * ) failmsg=${failmsg:+$failmsg, }'internal error' ;;
[all …]
H A Dtrap.t14 failmsg='push traps'
16 failmsg='trap 1' \
19 && failmsg='trap 2' \
23 && failmsg='trap 3' \
28 failmsg='set POSIX trap'
56 failmsg='unset POSIX trap'
59 failmsg='pop trap 3' \
62 && failmsg='pop trap 2a' \
65 && failmsg='pop trap 2' \
68 && failmsg='pop trap 1' \
[all …]
H A Dbuiltin.t9 thisshellhas --rw=$v || failmsg=${failmsg:+$failmsg, }$v
11 not isset failmsg
17 thisshellhas --bi=$v || failmsg=${failmsg:+$failmsg, }$v
19 not isset failmsg
31 thisshellhas --bi=$v || failmsg=${failmsg:+$failmsg, }$v
37 || failmsg=${failmsg:+$failmsg, }$v
40 not isset failmsg
79 ( * ) failmsg="e = $e"
111 ( * ) failmsg=$v; return 1 ;;
189 failmsg="x==$x; y==$y; z==$z"
[all …]
H A Dloop_cond.t21 ( * ) failmsg='setstatus failed'
118 ( * ) failmsg=$e; return 1 ;;
263 failmsg=$foo
276 failmsg=$foo
322 failmsg="returned status $e"
325 failmsg="found nothing"
328 failmsg="found wrong file ($v)"
344 failmsg="found wrong file: $v"
352 failmsg="returned status $e"
362 failmsg="names found don't match"
[all …]
H A D@sanitychecks.t91 failmsg="${failmsg:+${failmsg}; }NONFORKSUBSH on non-ksh93"
95 failmsg="${failmsg:+${failmsg}; }BUG_FNSUBSH on non-ksh93"
104 failmsg="${failmsg:+${failmsg}; }BUG_FNSUBSH+QRK_EXECFNBI"
110 failmsg="${failmsg:+${failmsg}; }ROFUNC+QRK_EXECFNBI"
118 failmsg="${failmsg:+${failmsg}; }BUG_SETOUTVAR w/o 'typeset -g'"
127 failmsg="${failmsg:+${failmsg}; }BUG_TRAPSUB0+BUG_CMDSPEXIT"
132 not isset failmsg
160 ( * ) failmsg='weird result'; return 1 ;;
H A Disset.t29 failmsg='export failed'
55 failmsg='isset -x fooled'
74 failmsg='export/readonly failed'
151 ( '' ) failmsg='shell exits'
154 ( * ) failmsg="status $v"
171 failmsg='BUG_IFSISSET workaround failed'
182 failmsg='BUG_IFSISSET workaround failed'
193 failmsg='BUG_IFSISSET workaround failed'
207 ( * ) failmsg=weird; setstatus 1 ;;
222 failmsg='BUG_KUNSETIFS workaround fails'
[all …]
H A Dprocess.t44 failmsg="it is, in spite of LEPIPEMAIN"
48 failmsg="it's not, though no LEPIPEMAIN"
55 failmsg="$REPLY != $$"
73 failmsg=$okmsg
87 failmsg=$okmsg
137 ( * ) failmsg=$v; return 1 ;;
/dports/math/singular/Singular-Release-4-2-1/Singular/LIB/surfex/
H A DINSTALL_WINDOWS81 failmsg=""
118 failmsg="$tstbinpath could not be created.
150 failmsg=""
188 if [ -n "$failmsg" ]; then echo $failmsg; fi
189 if [ -n "$failmsg" ]; then exit; fi
278 failmsg="Your current PATH is:
287 failmsg="
309 failmsg="Please contact us via our website:
322 failmsg="Your current PATH is:
396 echo $failmsg
[all …]
/dports/multimedia/tvheadend/tvheadend-4.2.8/src/misc/
H A Djson.c34 const char **failp, const char **failmsg);
41 const char **failp, const char **failmsg) in json_parse_string() argument
58 *failmsg = "Unexpected end of JSON message"; in json_parse_string()
118 *failmsg = "Incorrect escape sequence"; in json_parse_string()
170 name = json_parse_string(s, &s2, failp, failmsg); in json_parse_map()
172 *failmsg = "Expected string"; in json_parse_map()
188 *failmsg = "Expected ':'"; in json_parse_map()
212 *failmsg = "Expected ','"; in json_parse_map()
270 *failmsg = "Expected ','"; in json_parse_list()
339 const char **failp, const char **failmsg) in json_parse_value() argument
[all …]
/dports/multimedia/v4l_compat/linux-5.13-rc2/tools/testing/selftests/tc-testing/
H A DTdcResults.py16 self.failmsg = ""
40 def set_failmsg(self, failmsg): argument
41 self.failmsg = failmsg
44 def append_failmsg(self, failmsg): argument
45 self.failmsg = '{}\n{}'.format(self.failmsg, failmsg)
48 return self.failmsg
104 ftap += '\n\t{}'.format(t.failmsg)
116 if t.failmsg:
122 xunit += 'FAILURE: {}\n'.format(escape(t.failmsg))
/dports/multimedia/libv4l/linux-5.13-rc2/tools/testing/selftests/tc-testing/
H A DTdcResults.py16 self.failmsg = ""
40 def set_failmsg(self, failmsg): argument
41 self.failmsg = failmsg
44 def append_failmsg(self, failmsg): argument
45 self.failmsg = '{}\n{}'.format(self.failmsg, failmsg)
48 return self.failmsg
104 ftap += '\n\t{}'.format(t.failmsg)
116 if t.failmsg:
122 xunit += 'FAILURE: {}\n'.format(escape(t.failmsg))
/dports/multimedia/v4l-utils/linux-5.13-rc2/tools/testing/selftests/tc-testing/
H A DTdcResults.py16 self.failmsg = ""
40 def set_failmsg(self, failmsg): argument
41 self.failmsg = failmsg
44 def append_failmsg(self, failmsg): argument
45 self.failmsg = '{}\n{}'.format(self.failmsg, failmsg)
48 return self.failmsg
104 ftap += '\n\t{}'.format(t.failmsg)
116 if t.failmsg:
122 xunit += 'FAILURE: {}\n'.format(escape(t.failmsg))
/dports/security/palisade/palisade-release-d76213499af44558170cca6c72c5314755fec23c/src/pke/unittest/
H A DUnitTestCKKS.cpp139 EXPECT_TRUE(tmp == allTrue) << failmsg; in checkApproximateEquality()
147 const string& failmsg) { in UnitTest_Add_Packed() argument
208 failmsg + " EvalAdd fails"); in UnitTest_Add_Packed()
249 failmsg + " EvalSub fails"); in UnitTest_Add_Packed()
372 failmsg + " EvalMult fails"); in GENERATE_TEST_CASES_FUNC_BV()
605 failmsg + in GENERATE_TEST_CASES_FUNC_BV()
614 failmsg + in GENERATE_TEST_CASES_FUNC_BV()
623 failmsg + in GENERATE_TEST_CASES_FUNC_BV()
633 failmsg + in GENERATE_TEST_CASES_FUNC_BV()
980 const string& failmsg) { in GENERATE_TEST_CASES_FUNC_BV()
[all …]
H A DUnitTestBGVrns.cpp100 const string& failmsg) { in UnitTest_Add_Packed() argument
154 checkEquality(tmp_a, tmp_b, failmsg + " EvalAdd fails"); in UnitTest_Add_Packed()
173 checkEquality(tmp_a, tmp_b, failmsg + " operator+ fails"); in UnitTest_Add_Packed()
192 checkEquality(tmp_a, tmp_b, failmsg + " EvalSub fails"); in UnitTest_Add_Packed()
254 const string& failmsg) { in GENERATE_TEST_CASES_FUNC_BV()
308 checkEquality(tmp_a, tmp_b, failmsg + " EvalMult fails"); in GENERATE_TEST_CASES_FUNC_BV()
361 const string& failmsg) { in GENERATE_TEST_CASES_FUNC_BV()
446 const string& failmsg) { in GENERATE_TEST_CASES_FUNC_BV()
537 const string& failmsg) { in GENERATE_TEST_CASES_FUNC_BV()
874 const string& failmsg) { in GENERATE_TEST_CASES_FUNC_BV()
[all …]
H A DUnitTestPRE.cpp79 const string& failmsg) { in ReEncryption() argument
108 << failmsg << " key generation for scalar encrypt/decrypt failed"; in ReEncryption()
112 << failmsg << " second key generation for scalar encrypt/decrypt failed"; in ReEncryption()
125 << failmsg << " ReEncrypt short string plaintext with padding"; in ReEncryption()
132 << failmsg << " ReEncrypt full string plaintext"; in ReEncryption()
140 << failmsg << " ReEncrypt integer plaintext"; in ReEncryption()
149 << failmsg << " HRA-secure ReEncrypt short string plaintext with padding"; in ReEncryption()
158 << failmsg << " HRA-secure ReEncrypt full string plaintext"; in ReEncryption()
167 << failmsg << " HRA-secure ReEncrypt integer plaintext"; in ReEncryption()
/dports/net-p2p/c-lightning/lightning-0.10.2/lightningd/
H A Dpeer_htlcs.c150 u8 *failmsg; in failmsg_update_reply() local
176 failmsg); in failmsg_update_reply()
238 failmsg); in local_fail_in_htlc()
555 u8 *failmsg; in rcvd_htlc_reply() local
570 hout->failmsg = tal_steal(hout, failmsg); in rcvd_htlc_reply()
791 if (!failmsg) in forward_htlc()
947 u8 *failmsg; in htlc_accepted_hook_deserialize() local
1293 *failmsg = tal_free(*failmsg); in peer_accepted_htlc()
1409 u8 *failmsg; in peer_failed_our_htlc() local
1442 hout->failmsg = failmsg; in peer_failed_our_htlc()
[all …]
/dports/devel/poco/poco-1.10.1-all/Foundation/testsuite/src/
H A DNumberParserTest.cpp206 failmsg("must throw SyntaxException"); in testParseError()
213 failmsg("must throw SyntaxException"); in testParseError()
220 failmsg("must throw SyntaxException"); in testParseError()
227 failmsg("must throw SyntaxException"); in testParseError()
234 failmsg("must throw SyntaxException"); in testParseError()
240 failmsg("must throw SyntaxException"); in testParseError()
246 failmsg("must throw SyntaxException"); in testParseError()
252 failmsg("must throw SyntaxException"); in testParseError()
258 failmsg("must throw SyntaxException"); in testParseError()
266 failmsg("must throw SyntaxException"); in testParseError()
[all …]
H A DFileTest.cpp49 failmsg("file does not exist - must throw exception"); in testFileAttributes1()
58 failmsg("file does not exist - must throw exception"); in testFileAttributes1()
67 failmsg("file does not exist - must throw exception"); in testFileAttributes1()
76 failmsg("file does not exist - must throw exception"); in testFileAttributes1()
85 failmsg("file does not exist - must throw exception"); in testFileAttributes1()
94 failmsg("file does not exist - must throw exception"); in testFileAttributes1()
104 failmsg("file does not exist - must throw exception"); in testFileAttributes1()
113 failmsg("file does not exist - must throw exception"); in testFileAttributes1()
394 failmsg("file exist - must throw exception"); in testCopyFailIfDestinationFileExists()
427 failmsg("file exist - must throw exception"); in testMoveFailIfDestinationFileExists()
[all …]
H A DSharedLibraryTest.cpp57 failmsg("no such symbol - must throw exception"); in testSharedLibrary1()
64 failmsg("wrong exception"); in testSharedLibrary1()
95 failmsg("no such library - must throw exception"); in testSharedLibrary3()
102 failmsg("wrong exception"); in testSharedLibrary3()
114 failmsg("library already loaded - must throw exception"); in testSharedLibrary3()
121 failmsg("wrong exception"); in testSharedLibrary3()
/dports/devel/yasm/yasm-1.3.0/libyasm/tests/
H A Duncstring_test.c78 static char failmsg[100]; variable
93 sprintf(failmsg, in run_test()
101 sprintf(failmsg, in run_test()
109 sprintf(failmsg, in run_test()
115 sprintf(failmsg, in run_test()
121 sprintf(failmsg, in run_test()
147 sprintf(failed, "%s ** F: %s\n", failed, failmsg); in main()
H A Dleb128_test.c73 static char failmsg[100]; variable
92 sprintf(failmsg, "%ssigned %s%s size() bad size: expected %lu, got %lu!", in run_output_test()
103 sprintf(failmsg, "%ssigned %s%s get() bad size: expected %lu, got %lu!", in run_output_test()
116 sprintf(failmsg, "%ssigned %s%s get() bad output!", in run_output_test()
142 sprintf(failmsg, "%ssigned %s%s create() bad size: expected %lu, got %lu!", in run_input_test()
152 sprintf(failmsg, "%ssigned %s%s create() bad output!", in run_input_test()
182 sprintf(failed, "%s ** F: %s\n", failed, failmsg); in main()
189 sprintf(failed, "%s ** F: %s\n", failed, failmsg); in main()
/dports/net-p2p/c-lightning/lightning-0.10.2/external/libwally-core/src/ccan/ccan/tap/test/
H A Drun.c34 static void failmsg(const char *fmt, ...) in failmsg() function
57 failmsg("reading from pipe"); in expect()
61 failmsg("Expected '%s' got '%s'", pattern, buffer); in expect()
80 failmsg("pipe failed"); in main()
83 failmsg("Duplicating file descriptor"); in main()
122 failmsg("Expected exit status 3, not %i", exit_status()); in main()
/dports/science/afni/afni-AFNI_21.3.16/src/pkundu/meica.libs/mdp/
H A Dconfiguration.py78 def __init__(self, name, version=None, failmsg=None): argument
79 assert (version is not None) + (failmsg is not None) == 1
82 self.failmsg = str(failmsg) if failmsg is not None else None
90 return self.failmsg is None
96 return "NOT AVAILABLE: " + self.failmsg
99 def ExternalDepFailed(cls, name, failmsg): argument
115 return cls._ExternalDep(name, failmsg=failmsg)
/dports/science/py-mdp/MDP-3.5/mdp/
H A Dconfiguration.py81 def __init__(self, name, version=None, failmsg=None): argument
82 assert (version is not None) + (failmsg is not None) == 1
85 self.failmsg = str(failmsg) if failmsg is not None else None
93 return self.failmsg is None
99 return "NOT AVAILABLE: " + self.failmsg
102 def ExternalDepFailed(cls, name, failmsg): argument
118 return cls._ExternalDep(name, failmsg=failmsg)
/dports/net-p2p/c-lightning/lightning-0.10.2/tests/plugins/
H A Dhtlc_accepted-failcode.py15 if plugin.failmsg is not None:
16 res['failure_message'] = plugin.failmsg
29 plugin.failmsg = msg
35 plugin.failmsg = None

12345678910