summaryrefslogtreecommitdiff
path: root/sfx2/qa
diff options
context:
space:
mode:
authorMichael Stahl <mst@openoffice.org>2011-02-01 19:21:09 +0100
committerMichael Stahl <mst@openoffice.org>2011-02-01 19:21:09 +0100
commit1fd300c8480e37a4299534f70b53baa231935e8c (patch)
tree221c3a6ce8a166ee7d8d981a1f5c403094a2bce8 /sfx2/qa
parentd171285f3780a4b1b1e0cad4b40b8b9bc52b62f9 (diff)
gnumake3: convert some dmake files for tests to gbuild
Diffstat (limited to 'sfx2/qa')
-rw-r--r--sfx2/qa/unoapi/Test.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/sfx2/qa/unoapi/Test.java b/sfx2/qa/unoapi/Test.java
index 4263985c133f..c1231c975a2b 100644
--- a/sfx2/qa/unoapi/Test.java
+++ b/sfx2/qa/unoapi/Test.java
@@ -27,6 +27,7 @@ package org.openoffice.sfx2.qa.unoapi;
import org.openoffice.Runner;
import org.openoffice.test.OfficeConnection;
+import org.openoffice.test.Argument;
import static org.junit.Assert.*;
public final class Test {
@@ -43,8 +44,8 @@ public final class Test {
@org.junit.Test public void test() {
assertTrue(
Runner.run(
- "-sce", "sfx.sce", "-xcl", "knownissues.xcl", "-tdoc",
- "testdocuments", "-cs", connection.getDescription()));
+ "-sce", Argument.get("sce"), "-xcl", Argument.get("xcl"), "-tdoc",
+ Argument.get("tdoc"), "-cs", connection.getDescription()));
}
private final OfficeConnection connection = new OfficeConnection();