mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-03 09:49:23 +02:00
GT-0 fixing junit test
This commit is contained in:
parent
02912db641
commit
a30431d47b
1 changed files with 10 additions and 10 deletions
|
@ -102,16 +102,16 @@ public class GraphExportTest extends AbstractGhidraHeadedIntegrationTest {
|
|||
|
||||
assertOutput(lines,
|
||||
"digraph Ghidra {",
|
||||
" A [ Type=\"X\" Inverted=\"true\" Name=\"A\" ];",
|
||||
" B [ Type=\"Y\" Name=\"B\" ];",
|
||||
" C [ Type=\"Y\" Name=\"C\" ];",
|
||||
" D [ Type=\"Y\" Name=\"D\" ];",
|
||||
" E [ Type=\"Z\" Name=\"E\" ];",
|
||||
" A -> B [ EType=\"Fall\" ];",
|
||||
" B -> C [ EType=\"JMP\" ];",
|
||||
" B -> D [ EType=\"Fall\" ];",
|
||||
" C -> E [ EType=\"Fall\" ];",
|
||||
" D -> E [ EType=\"Call\" ];",
|
||||
" \"A\" [ Type=\"X\" Inverted=\"true\" Name=\"A\" ];",
|
||||
" \"B\" [ Type=\"Y\" Name=\"B\" ];",
|
||||
" \"C\" [ Type=\"Y\" Name=\"C\" ];",
|
||||
" \"D\" [ Type=\"Y\" Name=\"D\" ];",
|
||||
" \"E\" [ Type=\"Z\" Name=\"E\" ];",
|
||||
" \"A\" -> \"B\" [ EType=\"Fall\" ];",
|
||||
" \"B\" -> \"C\" [ EType=\"JMP\" ];",
|
||||
" \"B\" -> \"D\" [ EType=\"Fall\" ];",
|
||||
" \"C\" -> \"E\" [ EType=\"Fall\" ];",
|
||||
" \"D\" -> \"E\" [ EType=\"Call\" ];",
|
||||
"}");
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue