test.sh

来自「java开源的企业总线.xmlBlaster」· Shell 代码 · 共 55 行

SH
55
字号
#!/bin/sh## Helper to start the different test groups in sequence (UNIX only)# You need to manually close each of the GUI windows to continue## Precondition:# Edit xmlBlaster.properties and add 'protocol=IOR'# Edit xmlBlasterPlugins.xml and set connectEvent, disconnectEvent and clientListEvent to true# Compile all: build delete all c cpp csharp	(for the optional 'csharp' target you need mono installed)rm -rf $HOME/tmp/fileRecorderecho "STARTING classtest TESTS ..."java -Djava.compiler= junit.swingui.TestRunner -noloading org.xmlBlaster.test.classtest.AllTestsecho "STARTING xmlBlaster and wait for 10 sec to startup ..."xterm -geom 180x26 -e java org.xmlBlaster.Main&sleep 10echo "STARTING qos TESTS ..."java junit.swingui.TestRunner -noloading org.xmlBlaster.test.qos.AllTestsecho "STARTING distributor TESTS ..."java junit.swingui.TestRunner -noloading org.xmlBlaster.test.distributor.AllTestsecho "STARTING client TESTS ..."java junit.swingui.TestRunner -noloading org.xmlBlaster.test.client.AllTestsecho "STARTING authentication TESTS ..."java -Djava.compiler= junit.swingui.TestRunner -noloading org.xmlBlaster.test.authentication.AllTestsecho "STARTING dispatch TESTS ..."java junit.swingui.TestRunner -noloading org.xmlBlaster.test.dispatch.AllTestsecho "STARTING jdbc TESTS ..."java junit.swingui.TestRunner -noloading org.xmlBlaster.test.jdbc.AllTestsecho "STARTING jms TESTS ..."java junit.swingui.TestRunner -noloading org.xmlBlaster.test.jms.AllTestsecho "STARTING mime TESTS ..."java junit.swingui.TestRunner -noloading org.xmlBlaster.test.mime.AllTestsecho "STARTING topic TESTS ..."java junit.swingui.TestRunner -noloading org.xmlBlaster.test.topic.AllTestsecho "STARTING persistence TESTS ..."java junit.swingui.TestRunner -noloading org.xmlBlaster.test.persistence.AllTestsecho "STARTING j2ee TESTS ..."java junit.swingui.TestRunner -noloading org.xmlBlaster.test.j2ee.AllTests#echo "STARTING memoryleak TESTS ..."# Do it manually#java junit.swingui.TestRunner -noloading org.xmlBlaster.test.memoryleak.AllTestsecho "STARTING jmx TESTS ..."java junit.swingui.TestRunner -noloading org.xmlBlaster.test.jmx.AllTestsecho "STARTING cluster TESTS ..."java junit.swingui.TestRunner -noloading org.xmlBlaster.test.cluster.AllTestsecho "STARTING stress TESTS ..."java junit.swingui.TestRunner -noloading org.xmlBlaster.test.stress.AllTestsecho "STARTING classloader TESTS ..."java junit.swingui.TestRunner -noloading org.xmlBlaster.test.classloader.AllTestsecho "STARTING snmp TESTS ..."java junit.swingui.TestRunner -noloading org.xmlBlaster.test.snmp.AllTestsecho "STARTING C TESTS ..."java -Djava.compiler= junit.swingui.TestRunner -noloading org.xmlBlaster.test.C.AllTests

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?