Move libc file-system test into test/libc_vfs

Preparation for removing ffat library.

Issue #2410
This commit is contained in:
Christian Helmuth 2017-07-07 12:32:09 +02:00
parent de06eefbac
commit 473aa3454d
7 changed files with 9 additions and 9 deletions

View File

@ -1,3 +1,6 @@
TARGET = test-libc_ffat
LIBS = libc libc_ffat
SRC_CC = main.cc
# we re-use the libc_vfs test
vpath main.cc $(REP_DIR)/src/test/libc_vfs

View File

@ -2,4 +2,4 @@ TARGET = test-libc_fuse_exfat
LIBS = libc libc_fuse_exfat
SRC_CC = main.cc
vpath %.cc $(PRG_DIR)/../libc_ffat/
vpath %.cc $(REP_DIR)/src/test/libc_vfs

View File

@ -2,4 +2,4 @@ TARGET = test-libc_fuse_ext2
LIBS = libc libc_fuse_ext2
SRC_CC = main.cc
vpath %.cc $(PRG_DIR)/../libc_ffat
vpath %.cc $(REP_DIR)/src/test/libc_vfs

View File

@ -2,4 +2,4 @@ TARGET = test-libc_fuse_ntfs-3g
LIBS = libc libc_fuse_ntfs-3g
SRC_CC = main.cc
vpath %.cc $(PRG_DIR)/../libc_ffat
vpath %.cc $(REP_DIR)/src/test/libc_vfs

View File

@ -1,5 +1,5 @@
/*
* \brief libc_ffat test
* \brief Libc file-system test
* \author Christian Prochaska
* \author Norman Feske
* \date 2011-05-27

View File

@ -1,6 +1,3 @@
TARGET = test-libc_vfs
LIBS = libc
SRC_CC = main.cc
# we re-use the libc_ffat test
vpath main.cc $(REP_DIR)/src/test/libc_ffat

View File

@ -2,5 +2,5 @@ TARGET = test-libc_noux
LIBS = libc libc_noux
SRC_CC = main.cc
# we re-use the libc_ffat test
vpath main.cc $(call select_from_repositories,src/test/libc_ffat)
# we re-use the libc_vfs test
vpath main.cc $(call select_from_repositories,src/test/libc_vfs)