Home
last modified time | relevance | path

Searched refs:exception (Results 1 – 15 of 15) sorted by relevance

/Renode-v1.15.3-c57714d/tests/unit-tests/RenodeTests/PlatformDescription/
DVerificationTests.cs59 var exception = Assert.Throws<ParsingException>(() => ProcessSource(source)); in ShouldFailIfTypeIsSpecifiedSecondTime()
60 Assert.AreEqual(ParsingError.VariableAlreadyDeclared, exception.Error); in ShouldFailIfTypeIsSpecifiedSecondTime()
68 var exception = Assert.Throws<ParsingException>(() => ProcessSource(source)); in ShouldFailOnEmptyEntry()
69 Assert.AreEqual(ParsingError.EmptyEntry, exception.Error); in ShouldFailOnEmptyEntry()
78 var exception = Assert.Throws<ParsingException>(() => ProcessSource(source)); in ShouldFailOnNotExistingType()
79 Assert.AreEqual(ParsingError.TypeNotResolved, exception.Error); in ShouldFailOnNotExistingType()
89 var exception = Assert.Throws<ParsingException>(() => ProcessSource(source)); in ShouldFailOnRegisteringNotIPeripheral()
90 Assert.AreEqual(ParsingError.NoUsableRegisterInterface, exception.Error); in ShouldFailOnRegisteringNotIPeripheral()
101 var exception = Assert.Throws<ParsingException>(() => ProcessSource(source)); in ShouldFailOnStringMismatch()
102 Assert.AreEqual(ParsingError.TypeMismatch, exception.Error); in ShouldFailOnStringMismatch()
[all …]
DMergeAndCreationTests.cs165 var exception = Assert.Throws<ParsingException>(() => ProcessSource(source)); in ShouldFailOnUnclosedMultipleMultilineQuotedStrings()
166 Assert.AreEqual(ParsingError.SyntaxError, exception.Error); in ShouldFailOnUnclosedMultipleMultilineQuotedStrings()
167 …var position = exception.Message.Split(new string[] { Environment.NewLine }, StringSplitOptions.No… in ShouldFailOnUnclosedMultipleMultilineQuotedStrings()
187 var exception = Assert.Throws<ParsingException>(() => ProcessSource(source)); in ShouldFailOnUnclosedMultilineQuotedStringBetweenQuotedStrings()
188 Assert.AreEqual(ParsingError.SyntaxError, exception.Error); in ShouldFailOnUnclosedMultilineQuotedStringBetweenQuotedStrings()
189 …var position = exception.Message.Split(new string[] { Environment.NewLine }, StringSplitOptions.No… in ShouldFailOnUnclosedMultilineQuotedStringBetweenQuotedStrings()
241 var exception = Assert.Throws<ParsingException>(() => ProcessSource(source)); in ShouldFailOnMultilineQuotedStringInUsing()
242 Assert.AreEqual(ParsingError.SyntaxError, exception.Error); in ShouldFailOnMultilineQuotedStringInUsing()
279 var exception = Assert.Throws<ParsingException>(() => ProcessSource(source)); in ShouldFailOnAnyStringAfterClosedMultilineString()
280 Assert.AreEqual(ParsingError.SyntaxError, exception.Error); in ShouldFailOnAnyStringAfterClosedMultilineString()
[all …]
DUsingTests.cs45 var exception = Assert.Throws<ParsingException>(() => ProcessSource(null, source, a)); in ShouldNotFindLocalVariableFromUsing()
46 Assert.AreEqual(ParsingError.MissingReference, exception.Error); in ShouldNotFindLocalVariableFromUsing()
306 … var exception = Assert.Throws<ParsingException>(() => ProcessSource(null, source, a, b)); in ShouldFailOnDuplicateUsingEntry()
307 Assert.AreEqual(ParsingError.DuplicateUsing, exception.Error); in ShouldFailOnDuplicateUsingEntry()
339 … var exception = Assert.Throws<ParsingException>(() => ProcessSource(null, source, a, b)); in ShouldFailOnRecurringUsings()
340 Assert.AreEqual(ParsingError.RecurringUsing, exception.Error); in ShouldFailOnRecurringUsings()
354 var exception = Assert.Throws<ParsingException>(() => ProcessSource(null, source, a)); in ShouldFailOnDirectlyRecurringUsings()
355 Assert.AreEqual(ParsingError.RecurringUsing, exception.Error); in ShouldFailOnDirectlyRecurringUsings()
364 var exception = Assert.Throws<ParsingException>(() => ProcessSource(null, source)); in ShouldFailOnNonExistingUsingFile()
365 Assert.AreEqual(ParsingError.UsingFileNotFound, exception.Error); in ShouldFailOnNonExistingUsingFile()
DPreLexerTests.cs216 var exception = Assert.Throws<ParsingException>(() => result.ToArray()); in ShouldFailOnUnterminatedString()
217 Assert.AreEqual(ParsingError.SyntaxError, exception.Error); in ShouldFailOnUnterminatedString()
290 var exception = Assert.Throws<ParsingException>(() => result.ToArray()); in ShouldFailIfTheMultilineCommentFinishesBeforeEndOfLine()
291 Assert.AreEqual(ParsingError.SyntaxError, exception.Error); in ShouldFailIfTheMultilineCommentFinishesBeforeEndOfLine()
333 var exception = Assert.Throws<ParsingException>(() => result.ToArray());
334 Assert.AreEqual(ParsingError.WrongIndent, exception.Error);
346 var exception = Assert.Throws<ParsingException>(() => result.ToArray());
347 Assert.AreEqual(ParsingError.SyntaxError, exception.Error);
/Renode-v1.15.3-c57714d/src/Renode/Network/ExternalControl/
DRunFor.cs52 exception = null; in Invoke()
74 exception = e; in Invoke()
87 if(exception != null) in Invoke()
89 throw exception; in Invoke()
103 private Exception exception; field in Antmicro.Renode.Network.ExternalControl.RunFor
/Renode-v1.15.3-c57714d/tests/platforms/
DARM_Cortex-R8.robot98 # Let's remap exception vector for cpu0 and cpu2.
102 # Verify exception vectors, it should be a default for other CPUs.
DSTM32F4_Discovery.robot147 # Each timer interrupt sets FAULTMASK, so if the field is not cleared by exception exit
DRenesas_DA14592.robot98 …# After NMI exception, binary falls into while(true) loop while waiting for the watchdog to reset …
DARMv8R.robot547 # two instructions after entering exception handler with Step command
684 # two instructions after entering exception handler with Step command
/Renode-v1.15.3-c57714d/tests/unit-tests/
Driscv-mret.robot5 … 0xC0001073 # CSRRW 0x, cycle, x0. Since cycle is read only, triggers illegal instruction exception
Driscv-unit-tests.robot48 # invalid instruction exception at ${vector_opcode} or ${fvf_vector_opcode}.
/Renode-v1.15.3-c57714d/src/Renode/PlatformDescription/
DCreationDriver.cs619 catch(TargetInvocationException exception) in CreateAndHandleError()
621 var constructionException = exception.InnerException as ConstructionException; in CreateAndHandleError()
764 catch(TargetInvocationException exception) in SetPropertiesAndConnectInterrupts()
766 var recoverableException = exception.InnerException as RecoverableException; in SetPropertiesAndConnectInterrupts()
1013 catch(TargetInvocationException exception) in TryRegisterFromEntry()
1015 var recoverableException = exception.InnerException as RecoverableException; in TryRegisterFromEntry()
1029 catch(RecoverableException exception) in TryRegisterFromEntry()
1032 …ception was thrown during setting a name: {0}{1}", Environment.NewLine, exception.Message), false); in TryRegisterFromEntry()
/Renode-v1.15.3-c57714d/
DCHANGELOG.rst14 * RISC-V MTVAL register now contains the invalid instruction after illegal instruction exception
73 * infinite loop on debug exception with an interrupt pending
154 * remapping exception vector in Arm CPUs having neither VBAR nor VTOR
209 * exception thrown on an empty message in log when failing a Robot test
683 * exception when issuing a DMA transaction during register access
684 * reported PC on exception when executing vector instructions in RISC-V
1096 * stacktrace reporting when exception is rethrown on the native-managed boundary
1098 * exception handling on EnsureTypeIsLoaded
1275 * updating PC before raising MMU exception on RISC-V
1296 * illegal instruction exception on wrong CSR access on RISC-V
[all …]
/Renode-v1.15.3-c57714d/tests/
Drenode-keywords.robot163 # Some of the exception messages end with whitespace.
/Renode-v1.15.3-c57714d/src/Plugins/CoSimulationPlugin/IntegrationLibrary/libs/socket-cpp/
DREADME.md46 Please note that the constructor of CTCPServer or the SSL/TLS version throws only an exception in t…