summaryrefslogtreecommitdiffstats
path: root/src/VBox/ValidationKit/vms/t-dos622.txt
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-11 08:17:27 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-11 08:17:27 +0000
commitf215e02bf85f68d3a6106c2a1f4f7f063f819064 (patch)
tree6bb5b92c046312c4e95ac2620b10ddf482d3fa8b /src/VBox/ValidationKit/vms/t-dos622.txt
parentInitial commit. (diff)
downloadvirtualbox-f215e02bf85f68d3a6106c2a1f4f7f063f819064.tar.xz
virtualbox-f215e02bf85f68d3a6106c2a1f4f7f063f819064.zip
Adding upstream version 7.0.14-dfsg.upstream/7.0.14-dfsg
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/VBox/ValidationKit/vms/t-dos622.txt')
-rw-r--r--src/VBox/ValidationKit/vms/t-dos622.txt50
1 files changed, 50 insertions, 0 deletions
diff --git a/src/VBox/ValidationKit/vms/t-dos622.txt b/src/VBox/ValidationKit/vms/t-dos622.txt
new file mode 100644
index 00000000..6fcd888f
--- /dev/null
+++ b/src/VBox/ValidationKit/vms/t-dos622.txt
@@ -0,0 +1,50 @@
+
+Test VM - t-dos622 - DOS 6.22
+=============================
+
+Setup:
+ - Create a default DOS VM 't-dos622'.
+ - Install DOS (single partition, etc).
+ - Install CDROM driver (e.g. OAK).
+ - Copy DosSleep.exe and DosVmOff.com onto the disk (C:\).
+ - Create c:\test.bat with the following content:
+ echo on
+
+ echo TESTING chkdsk.exe C: >COM1
+ dossleep 1
+ C:\DOS\CHKDSK.EXE C:
+ IF NOT ERRORLEVEL 0 goto fail
+
+ echo TESTING msd.exe /P NUL >COM1
+ dossleep 1
+ C:\DOS\MSD.EXE /P NUL
+
+ echo TESTING qbasic.exe /RUN C:\HELLO.BAS >COM1
+ dossleep 1
+ C:\DOS\QBASIC.EXE /RUN C:\HELLO.BAS
+ IF NOT ERRORLEVEL 0 goto fail
+
+ REM Done
+ echo PASSED>COM1
+ goto done
+
+ :fail
+ echo FAILED>COM1
+ goto done
+
+ :done
+ echo Powering off the VM in 5 seconds...
+ dossleep 1
+ dossleep 1
+ dossleep 1
+ dossleep 1
+ dossleep 1
+ dosvmoff
+ :exit
+ - Create C:\HELLO.BAS with the following content:
+ PRINT "Hello World!"
+ SYSTEM
+ END
+ - Edit c:\autoexec.bat appending "echo on" and "call c:\test.bat".
+ - Check that C:\config.sys contains himem.sys from windows and no emm386.
+