Commit e5ce80dd authored by zeiss's avatar zeiss
Browse files

No commit message

No commit message
parent 920f8097
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -12,7 +12,7 @@ type component GeneralComp { }
testcase TC_NegSem_1511_ConcatenatingTemplatesOfStringAndListTypes_001() runs on GeneralComp {
	var template octetstring v_str := 'ABCD'O & '?'O & '?E'O;

	// shall cause an error as it would denote 7 (i.e., uneven) number of digits
	// shall cause an error as it would denote 9 (i.e., uneven) number of digits
	setverdict(fail);
}

+1 −1
Original line number Diff line number Diff line
@@ -12,7 +12,7 @@ type component GeneralComp { }
testcase TC_Sem_1511_ConcatenatingTemplatesOfStringAndListTypes_005() runs on GeneralComp {
	var template octetstring v_template := 'ABCD'O & * length(2) & 'EF'O;

	if (match('ABCDAAEF'O, v_template)) {
	if (match('ABCDAABBEF'O, v_template)) {
		setverdict(pass);
	} else {
		setverdict(fail);