marek-sezemsky / coreemu

Automatically exported from code.google.com/p/coreemu
BSD 2-Clause "Simplified" License
0 stars 0 forks source link

core --start option doesn't work with XML files #192

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
core --start test.xml will load an XML scenario but not actually start it

core.tcl code path:

    setOperMode edit
    fileOpenStartUp
    # Boeing --start option
    foreach arg $argv {
        if { $arg == "--start -s" || $arg == "--start" } {
            setOperMode exec; break; 
        }
    }

probably want to modify the file_open event message to flag that a file should 
be loaded and run

Original issue reported on code.google.com by ahrenh...@gmail.com on 18 Mar 2013 at 11:00

GoogleCodeExporter commented 9 years ago
implementation of this should be easy

Original comment by ahrenh...@gmail.com on 2 Apr 2013 at 8:31

GoogleCodeExporter commented 9 years ago
fixed in r839

Original comment by ahrenh...@gmail.com on 8 Aug 2013 at 6:46