File: 0012-rename-binaries-to-rtags-in-python-tests.patch

package info (click to toggle)
rtags 2.41-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,768 kB
  • sloc: cpp: 51,883; lisp: 5,389; ansic: 1,637; sh: 563; python: 305; objc: 81; makefile: 29
file content (24 lines) | stat: -rw-r--r-- 863 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
From: Denis Danilov <danilovdenis@yandex.ru>
Date: Wed, 4 Mar 2020 21:50:37 +0100
Subject: rename binaries to rtags-* in python tests

Forwarded: not-needed
---
 tests/automated/utils.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tests/automated/utils.py b/tests/automated/utils.py
index 2d1c559..154671e 100644
--- a/tests/automated/utils.py
+++ b/tests/automated/utils.py
@@ -15,8 +15,8 @@ class RTags():
     '''RTags class for rdm/rc tests'''
 
     try:
-        __rdm_exe = os.path.join(os.environ['RTAGS_BINARY_DIR'], 'rdm')
-        __rc_exe = os.path.join(os.environ['RTAGS_BINARY_DIR'], 'rc')
+        __rdm_exe = os.path.join(os.environ['RTAGS_BINARY_DIR'], 'rtags-rdm')
+        __rc_exe = os.path.join(os.environ['RTAGS_BINARY_DIR'], 'rtags-rc')
         is_exe(__rdm_exe)
         is_exe(__rc_exe)
     except KeyError: