summaryrefslogtreecommitdiffstats
path: root/smoketestoo_native
Commit message (Collapse)AuthorAgeFilesLines
* fixed typoTakeshi Abe2011-10-211-1/+1
|
* Introduced --disable-linkoo.Stephan Bergmann2011-10-201-1/+6
|
* losmoketest.py: allow to use the long --headless option; not only -sPetr Mladek2011-10-191-1/+3
|
* losmoketest.py: fix to work with LO-3.5 daily build and improvedPetr Mladek2011-10-181-51/+121
| | | | | | | | | | | | | | + use the version 3.5 instead of 3.4 + use /opt/lo-dev instead of /opt/libreoffice3.4 + new options: + -d/--download just download the last build + -s/--headless use the headless mode when running the smoke test + -l/--loop do download/install/smoketest in a loop; do it jsut once by default + uninstall the old version when -i/--install option is used + mention PASSED/FAILED in the test log + restore compat symlinks to prebuilt binaries when they do not exits + complain when build.cfg is missing
* losmoketest.py: add pattern to download x86_64 rpms from masterBernhard M. Wiedemann2011-10-171-1/+1
|
* allow to execute losmoketest.py directlyPetr Mladek2011-10-171-0/+1
| | | | add exectuable rights; add #!/usr/bin/env python
* adapt make dev-install to unotest changesMarkus Mohrhard2011-09-281-4/+4
|
* One step closer to a functional 'make dev-install' with MinGW.Jan Holesovsky2011-09-261-1/+1
|
* In smoketest.cxx, also wait for connection_ going stale while waiting for ↵Stephan Bergmann2011-09-261-3/+11
| | | | result.condition.
* add a 30 second timeout to failure if we get no response in this timeMichael Meeks2011-09-241-1/+3
|
* Simplified setting headless mode for smoke-/subsequenttetss.Stephan Bergmann2011-09-161-1/+0
| | | | | | Both C++ and Java OfficeConnection code now always pass --headless, so no need for SAL_USE_VCLPLUGIN=svp etc. any more. Only some C++ unit tests that link against vcl still need an explicit --headless.
* Added more detailed information to smoketest failure result string.Stephan Bergmann2011-09-151-1/+9
|
* Folded smoketestdoc back into smoketestoo_native; no need to have it separated.Stephan Bergmann2011-09-1424-4/+2775
|
* sb140: #i113503# mixing system CppUnit and OOo STLport does not work, backed ↵Stephan Bergmann2011-09-121-1/+5
| | | | | | out a6913c9677c2 For LibO, that just means replacing sal/cppunit.h with sal/precppunit.hxx.
* sb140: #i117694# some CppUnit related cleanupStephan Bergmann2011-09-123-41/+4
|
* remove extracting dirs before testingYifan J2011-08-191-0/+2
|
* initial upload losmoketestYifan J2011-08-112-0/+757
|
* use links in smoketest install tooBjoern Michaelsen2011-05-231-1/+1
|
* remove ADAPT_EXT_STLCaolán McNamara2011-04-051-7/+0
|
* drop bogus executable flag from idl/build/src and config filesFrancisco Saito2011-03-291-0/+0
|
* drop bogus executable flag from [ch]xx/bas/asm filesFrancisco Saito2011-03-291-0/+0
|
* Merge commit 'ooo/DEV300_m103'Jan Holesovsky2011-03-2325-2560/+11
|\ | | | | | | | | | | | | | | | | | | Conflicts: smoketestdoc/com/sun/star/comp/smoketest/makefile.mk smoketestdoc/data/Global.xml smoketestdoc/data/OptionsDlg.xml smoketestdoc/data/Test_10er.xml smoketestoo_native/data/content.xml smoketestoo_native/makefile.mk
| * CWS-TOOLING: integrate CWS debuglevelsobo2011-03-1625-2524/+16
| |\
| | * debuglevels: open the smoketest doc read-onlyFrank Schoenheit [fs]2011-03-031-1/+6
| | |
| | * debuglevels: #i117073# added cppunittester --protector support; added ↵sb2011-02-251-34/+5
| | | | | | | | | | | | unoexceptionprotector and use it in installationtest.mk; reverted changes to smoketest.cxx obsoleted by these additions
| | * debuglevels: let smoketestoo_native use a dedicated version of ↵Frank Schoenheit [fs]2011-02-211-0/+2
| | | | | | | | | | | | dbgsvrc/DBGSV_INIT, instead of using the default which the build env points to - it might direct assertion output to whereever ...
| | * debuglevels: explicit failure upon catching an UNO exception (which gives a ↵Frank Schoenheit [fs]2011-02-161-5/+34
| | | | | | | | | | | | slightly better idea of the failure than what cppunit emits by default)
| | * debuglevels: bin, not binPROEXTFrank Schoenheit [fs]2011-02-131-6/+6
| | |
| | * debuglevels: outsourced creation of the smoketest doc into an own module, so ↵Frank Schoenheit [fs]2011-02-1127-2625/+3
| | | | | | | | | | | | it can be used outside smoketesoo_native, too
| | * debuglevels: removed the dead code and UI for binary file formats - no tests ↵Frank Schoenheit [fs]2011-02-082-95/+43
| | | | | | | | | | | | existed for this
| | * debuglevels: make dialog somewhat more usableFrank Schoenheit [fs]2011-02-081-20/+23
| | |
| | * debuglevels: also log errors during the test's glue code (well, assertions, ↵Frank Schoenheit [fs]2011-02-084-261/+339
| | | | | | | | | | | | at least)
| | * debuglevels: make the current test case a global variable, so the ↵Frank Schoenheit [fs]2011-02-084-85/+82
| | | | | | | | | | | | AssertionHandler can use it
| | * debuglevels: capture assertions during the test run, let the test fail in ↵Frank Schoenheit [fs]2011-02-084-122/+111
| | | | | | | | | | | | | | | | | | | | | case we encounter an assertion. Still missing: Refactor the tests so that the currently running test case ("open doc", "save doc", etc.) is known in the assertion handler, so we can mark the proper test case as "failed". Currently, the "new doc" case is marked, which is wrong.
| | * debuglevels: some cleanup of the smoketest code, in preparation of #i116845#Frank Schoenheit [fs]2011-02-084-116/+208
| |/
* | make smoketest work againCaolán McNamara2011-03-211-1/+1
| |
* | get .sdw suffixes etc backCaolán McNamara2011-03-211-2/+20
| |
* | fix smoketest options dialog post-mergeCaolán McNamara2011-03-211-2/+3
| |
* | Merge commit 'ooo/DEV300_m101' into integration/dev300_m101Michael Meeks2011-03-117-275/+42
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: smoketestoo_native/data/Global.xml smoketestoo_native/data/OptionsDlg.xml smoketestoo_native/data/Test_10er.xml smoketestoo_native/data/content.xml smoketestoo_native/smoketest.cxx test/source/cpp/getargument.cxx test/source/cpp/officeconnection.cxx testautomation/framework/optional/includes/basic_vba-compat_security_check.inc testautomation/framework/optional/includes/filedlg_cjk_folders.inc testautomation/global/sid/all.sid testautomation/global/sid/bars.sid testautomation/global/sid/e_all.sid testautomation/global/win/bars.win testautomation/graphics/optional/includes/impress/i_slideshow2.inc testautomation/graphics/optional/includes/impress/i_slideshow3.inc testtools/source/bridgetest/bridgetest.cxx testtools/source/bridgetest/constructors.cxx testtools/source/bridgetest/makefile.mk testtools/source/bridgetest/testComponent.component
| * #i116322# disable binfilter file export: remove test of binary load/saveos2011-01-101-67/+4
| |
| * sb132: merged in DEV300_m90sb2010-10-212-14/+14
| |\
| | * sb123: #i112986# fixed merge conflictsb2010-09-201-6/+3
| | |
| | * sb123: merged in DEV300_m87sb2010-09-1021-11/+2540
| | |\
| | * \ sb123:mergeLars Langhans2010-07-121-0/+0
| | |\ \
| | * \ \ merge DEV300_m83Lars Langhans2010-06-182-8/+11
| | |\ \ \
| | | * | | sb123: #i111601# various additional test helper functionalitysb2010-05-142-4/+5
| | | | | |
| | | * | | sb123: #i111598# OfficeConnection getFactory -> getComponentContextsb2010-05-141-4/+6
| | | | | |
| * | | | | sb132: #i97025# removed cut/paste test (using system clipboard) from smoketestsb2010-09-245-223/+18
| | |_|_|/ | |/| | |
| * | | | CWS-TOOLING: integrate CWS cmcfixes77Vladimir Glazunov2010-08-252-0/+9
| |\ \ \ \
| | * \ \ \ cmcfixes77: merge with DEV300 m86Caolán McNamara2010-08-0320-6/+2492
| | |\ \ \ \