| Test Execution Status | Statistics |
|---|---|
| Passed | 0.000% (0/108) |
| Failed | 0.000% (0/108) |
| Requires Manual Checking | 0.000% (0/108) |
| Unknown | 0.000% (0/108) |
| All | 0.000% (0/108) |
| Category | Removed Lines | Inserted Lines | Total |
|---|---|---|---|
| Modified lines executed: | -- (0/0) | 0.000% (0/8) | 0.000% (0/8) |
| Modified lines not executed: | -- (0/0) | 25.000% (2/8) | 25.000% (2/8) |
| Source code lines not covered: | -- (0/0) | 75.000% (6/8) | 75.000% (6/8) |
| Execution Name | State |
|---|
| Line | Tests | Difference Output |
|---|---|---|
| diff --git a/NEWS b/NEWS | ||
| index 5fa69285d..e5569eb4e 100644 | ||
| --- a/NEWS | ||
| +++ b/NEWS | ||
| @@ -21,6 +21,12 @@ GNU coreutils NEWS -*- outline -*- | ||
| 21 | Previously it would have set executable bits on created special files. | |
| 22 | [bug introduced with coreutils-8.20] | |
| 23 | ||
| 24 | - | +** Improvements |
| 25 | - | + |
| 26 | - | + stat and tail now know about the "exfs" file system, which is a |
| 27 | - | + version of XFS. stat -f --format=%T now reports the file system type, |
| 28 | - | + and tail -f uses inotify. |
| 29 | - | + |
| 24 ➡ 30 | ||
| 25 ➡ 31 | * Noteworthy changes in release 8.29 (2017-12-27) [stable] | |
| 26 ➡ 32 |
| Line | Tests | Difference Output |
|---|---|---|
| diff --git a/src/stat.c b/src/stat.c | ||
| index c5da60260..0a5ef3cb4 100644 | ||
| --- a/src/stat.c | ||
| +++ b/src/stat.c | ||
| @@ -324,6 +324,8 @@ human_fstype (STRUCT_STATVFS const *statfsbuf) | ||
| 324 | return "efivarfs"; | |
| 325 | case S_MAGIC_EFS: /* 0x00414A53 local */ | |
| 326 | return "efs"; | |
| 327 | 0 | + case S_MAGIC_EXFS: /* 0x45584653 local */ |
| 328 | 0 | + return "exfs"; |
| 327 ➡ 329 | case S_MAGIC_EXOFS: /* 0x5DF5 local */ | |
| 328 ➡ 330 | return "exofs"; | |
| 329 ➡ 331 | case S_MAGIC_EXT: /* 0x137D local */ |