Displaying 3 results from an estimated 3 matches for "1ab85e8".
Did you mean:
  1ab0578
  
2016 Feb 29
0
[PATCH 2/2] added ntfscat_i tests
...++++++++++++++++++
 tests/ntfscat/test-ntfscat.sh | 53 +++++++++++++++++++++++++++++++++++++++++++
 5 files changed, 86 insertions(+), 1 deletion(-)
 create mode 100644 tests/ntfscat/Makefile.am
 create mode 100755 tests/ntfscat/test-ntfscat.sh
diff --git a/Makefile.am b/Makefile.am
index ba99feb..1ab85e8 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -66,6 +66,7 @@ SUBDIRS += tests/luks
 SUBDIRS += tests/md
 SUBDIRS += tests/selinux
 SUBDIRS += tests/ntfsclone
+SUBDIRS += tests/ntfscat
 SUBDIRS += tests/btrfs
 SUBDIRS += tests/xfs
 SUBDIRS += tests/charsets
diff --git a/configure.ac b/configure.ac
i...
2016 Feb 29
2
[PATCH 1/2] added ntfscat_i api
Adding ntfscat_i command for downloading files based on their inode number.
This allows the dowload of files unaccessible otherwise from a NTFS guest disk image.
Signed-off-by: Matteo Cafasso <noxdafox@gmail.com>
---
 daemon/ntfs.c        | 62 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 generator/actions.ml | 15 +++++++++++++
 2 files changed, 77 insertions(+)
diff --git
2016 Mar 01
1
[PATCH] tests: move ntfs tests in a single directory
...cat.sh
 create mode 100755 tests/ntfs/test-ntfsclone.sh
 delete mode 100644 tests/ntfscat/Makefile.am
 delete mode 100755 tests/ntfscat/test-ntfscat.sh
 delete mode 100644 tests/ntfsclone/Makefile.am
 delete mode 100755 tests/ntfsclone/test-ntfsclone.sh
diff --git a/Makefile.am b/Makefile.am
index 1ab85e8..fe92630 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -65,8 +65,7 @@ SUBDIRS += tests/lvm
 SUBDIRS += tests/luks
 SUBDIRS += tests/md
 SUBDIRS += tests/selinux
-SUBDIRS += tests/ntfsclone
-SUBDIRS += tests/ntfscat
+SUBDIRS += tests/ntfs
 SUBDIRS += tests/btrfs
 SUBDIRS += tests/xfs
 SUBDIRS += tes...