tests 472 B

1234567891011121314151617181920
  1. #!/bin/sh
  2. ./run-BlackBox <<DATA
  3. DevCompiler.CompileThis ObxHello0 ObxPi
  4. ObxHello0.Do
  5. ObxPi.WritePi(1000)
  6. ConsCompiler.Compile('Obx/Mod', 'Hello0.odc')
  7. ConsCompiler.Compile('Obx/Mod', 'Pi.odc')
  8. # what is source of errors???
  9. ConsCompiler.Compile('', 'HostFonts.txt')
  10. DevElfLinker.LinkDll libBB.so := Kernel+ Files HostFiles StdLoader
  11. DATA
  12. ./run-BlackBox <<DATA
  13. DevCompiler.CompileThis DevLinker
  14. DevLinker.LinkDll BlackBox.exe := Kernel$+ Files HostFiles StdLoader
  15. DATA