diff -cr drone-1.02/CHANGES drone-1.03/CHANGES *** drone-1.02/CHANGES Tue Nov 19 15:57:50 1996 --- drone-1.03/CHANGES Sat Jan 4 22:01:42 1997 *************** *** 1,5 **** --- 1,11 ---- Drone revision history + 1.03 + Fixed a bug where Drone would still specify an input file on the target + program's command line, even if makInputFile was 0. + + No changes to the docs. + 1.02 Fixed a bug that caused case logs to be saved in the final results only if the local host was one of the hosts used to run the experiment, if diff -cr drone-1.02/drone drone-1.03/drone *** drone-1.02/drone Tue Nov 19 15:54:30 1996 --- drone-1.03/drone Sat Jan 4 21:53:00 1997 *************** *** 12,18 **** # Drone # # Version: ! set droneVersion 1.02 # by Theodore C. Belding # The CAR Group (Michael Cohen, Robert Axelrod, and Rick Riolo) --- 12,18 ---- # Drone # # Version: ! set droneVersion 1.03 # by Theodore C. Belding # The CAR Group (Michael Cohen, Robert Axelrod, and Rick Riolo) *************** *** 20,26 **** # # # ! # November 19, 1996 # # Drone homepage: # --- 20,26 ---- # # # ! # January 4, 1997 # # Drone homepage: # *************** *** 2162,2171 **** set paramArgs [MakeParamArgs] set sweepArgs [MakeSweepArgs $curSweepValues] ! if {$droneParams(useLocalHost)} { ! set inputArg $droneParams(inputFileOption)$inputPath } else { ! set inputArg $droneParams(inputFileOption)[file tail $inputPath] } set seedArg $droneParams(runSeedOption)$seed --- 2162,2175 ---- set paramArgs [MakeParamArgs] set sweepArgs [MakeSweepArgs $curSweepValues] ! if {$droneParams(makeInputFile)} { ! if {$droneParams(useLocalHost)} { ! set inputArg $droneParams(inputFileOption)$inputPath ! } else { ! set inputArg $droneParams(inputFileOption)[file tail $inputPath] ! } } else { ! set inputArg {} } set seedArg $droneParams(runSeedOption)$seed