From 9fcb58fb8a971293d6527902012737e8e73c9996 Mon Sep 17 00:00:00 2001 From: ligd Date: Tue, 20 Dec 2022 21:57:54 +0800 Subject: [PATCH] pipe: fix pipe test case failed pipe shouldn't use /tmp folder, /tmp maybe mounted to tmpfs Signed-off-by: ligd --- examples/pipe/pipe.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/pipe/pipe.h b/examples/pipe/pipe.h index 6ce7c06bb..304fb8e16 100644 --- a/examples/pipe/pipe.h +++ b/examples/pipe/pipe.h @@ -33,8 +33,8 @@ * Pre-processor Definitions ****************************************************************************/ -#define FIFO_PATH1 "/tmp/testfifo-1" -#define FIFO_PATH2 "/tmp/testfifo-2" +#define FIFO_PATH1 "/var/testfifo-1" +#define FIFO_PATH2 "/var/testfifo-2" /**************************************************************************** * Public Types