summaryrefslogtreecommitdiff
path: root/basic
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-01-09 10:52:00 +0100
committerStephan Bergmann <sbergman@redhat.com>2017-01-09 10:53:30 +0100
commit93a8ebac2d6eb124bf57223069765af08fcd5c85 (patch)
tree5425eeeb5faf0ffc23608df16f34827019c87a37 /basic
parente497d4d49033239869a3ad9f7c388e4c2acc3401 (diff)
Remove test_getsystemticks_method.vb for now
Introduced with 060c2b9b1b0d3c9cf27f1b289a620cfa82b5b060 "QA Basic: split tests of methods in different files", but GetSystemTicks appears to routinely return negative values. Change-Id: Ibccdf753aea581e05e9d4e1bf551ae72dc70c959
Diffstat (limited to 'basic')
-rw-r--r--basic/qa/basic_coverage/test_getsystemticks_method.vb15
1 files changed, 0 insertions, 15 deletions
diff --git a/basic/qa/basic_coverage/test_getsystemticks_method.vb b/basic/qa/basic_coverage/test_getsystemticks_method.vb
deleted file mode 100644
index 878b38bf2f77..000000000000
--- a/basic/qa/basic_coverage/test_getsystemticks_method.vb
+++ /dev/null
@@ -1,15 +0,0 @@
-' This file is part of the LibreOffice project.
-'
-' This Source Code Form is subject to the terms of the Mozilla Public
-' License, v. 2.0. If a copy of the MPL was not distributed with this
-' file, You can obtain one at http://mozilla.org/MPL/2.0/.
-'
-
-Function doUnitTest as Integer
- ' GETSYSTEMTICKS
- If ( GetSystemTicks < 0 ) Then
- doUnitTest = 0
- Else
- doUnitTest = 1
- End If
-End Function