Changeset 70759 in vbox
- Timestamp:
- Jan 26, 2018 5:45:38 PM (7 years ago)
- File:
-
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/vms/t-dos71.txt
r70758 r70759 1 1 2 Test VM - t-dos 622 - DOS 6.223 ============================= 2 Test VM - t-dos71 - PC-DOS 7.1 (or 7.0) 3 ======================================= 4 4 5 5 Setup: 6 - Create a default DOS VM 't-dos622'. 7 - Install DOS (single partition, etc). 6 - Create a default DOS VM 't-dos71'. 7 - Install DOS (single partition, etc). Make sure to install the IBM anti virus. 8 - Make sure POWER.EXE is loaded by Config.sys and that emm386 isn't used. 9 - Add /V to HIMEM. 8 10 - Install CDROM driver (e.g. OAK). 9 11 - Copy DosSleep.exe and DosVmOff.com onto the disk (C:\). 10 12 - Create c:\test.bat with the following content: 11 echo on 12 13 echo TESTING chkdsk.exe C: >COM1 14 dossleep 1 15 C:\DOS\CHKDSK.EXE C: 16 IF NOT ERRORLEVEL 0 goto fail 17 18 echo TESTING msd.exe /P NUL >COM1 19 dossleep 1 20 C:\DOS\MSD.EXE /P NUL 21 22 echo TESTING qbasic.exe /RUN C:\HELLO.BAS >COM1 23 dossleep 1 24 C:\DOS\QBASIC.EXE /RUN C:\HELLO.BAS 25 IF NOT ERRORLEVEL 0 goto fail 26 27 REM Done 13 echo TESTING: chkdsk C: >COM1 14 C:\DOS\CHKDSK.COM C: 15 @IF NOT ERRORLEVEL 0 GOTO fail 16 @ 17 echo TESTING: IBM anti virus scan >COM1 18 c:\dos\ibmavsp.exe C: -ALL -NLOG 19 @IF NOT ERRORLEVEL 0 GOTO fail 20 @ 28 21 echo PASSED>COM1 29 22 goto done … … 34 27 35 28 :done 36 echo Powering off the VM in 5 seconds... 37 dossleep 1 38 dossleep 1 39 dossleep 1 40 dossleep 1 41 dossleep 1 29 @echo Powering off in 5 seconds... 30 dossleep 5 42 31 dosvmoff 43 :exit44 - Create C:\HELLO.BAS with the following content:45 PRINT "Hello World!"46 SYSTEM47 END48 32 - Edit c:\autoexec.bat appending "echo on" and "call c:\test.bat". 49 33 - Check that C:\config.sys contains himem.sys from windows and no emm386.
Note:
See TracChangeset
for help on using the changeset viewer.