diff mbox series

[for-4.20] tools/libxs: Drop XSTEST

Message ID 20240628150853.1048006-1-andrew.cooper3@citrix.com (mailing list archive)
State New
Headers show
Series [for-4.20] tools/libxs: Drop XSTEST | expand

Commit Message

Andrew Cooper June 28, 2024, 3:08 p.m. UTC
Appears to been missed from the previous attempt in 2007.

Fixes: fed194611785 ("xenstore: Remove broken and unmaintained test code")
Signed-off-by: Andrew Cooper <andrew.cooper3@citrix.com>
---
CC: Anthony PERARD <anthony@xenproject.org>
CC: Juergen Gross <jgross@suse.com>
---
 tools/libs/store/xs.c | 5 -----
 1 file changed, 5 deletions(-)
diff mbox series

Patch

diff --git a/tools/libs/store/xs.c b/tools/libs/store/xs.c
index f84fd0f74c84..983d68ffd367 100644
--- a/tools/libs/store/xs.c
+++ b/tools/libs/store/xs.c
@@ -496,10 +496,6 @@  static bool read_all(int fd, void *data, unsigned int len, int nonblocking)
 	return false;
 }
 
-#ifdef XSTEST
-#define read_all read_all_choice
-#define xs_write_all write_all_choice
-#else
 /* Simple routine for writing to sockets, etc. */
 bool xs_write_all(int fd, const void *data, unsigned int len)
 {
@@ -517,7 +513,6 @@  bool xs_write_all(int fd, const void *data, unsigned int len)
 
 	return true;
 }
-#endif
 
 static int get_error(const char *errorstring)
 {