From 2670086905b0721af123670c240e8fbc159c446d Mon Sep 17 00:00:00 2001 From: "Rajeev V. Pillai" Date: Wed, 6 May 2009 12:23:45 +0100 Subject: cal: Highlight today even when month or year specified MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * misc-utils/cal.c: Unconditionally call time() and highlight today where possible. Signed-off-by: Rajeev V. Pillai Signed-off-by: Pádraig Brady --- misc-utils/cal.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/misc-utils/cal.c b/misc-utils/cal.c index 2417f1b5..f2d52e8c 100644 --- a/misc-utils/cal.c +++ b/misc-utils/cal.c @@ -348,6 +348,9 @@ main(int argc, char **argv) { argc -= optind; argv += optind; + time(&now); + local_time = localtime(&now); + day = month = year = 0; switch(argc) { case 3: @@ -366,13 +369,13 @@ main(int argc, char **argv) { if (day > dm) errx(1, _("illegal day value: use 1-%d"), dm); day = day_in_year(day, month, year); + } else if ((local_time->tm_year + 1900) == year) { + day = local_time->tm_yday + 1; } if (!month) yflag=1; break; case 0: - time(&now); - local_time = localtime(&now); day = local_time->tm_yday + 1; year = local_time->tm_year + 1900; month = local_time->tm_mon + 1; -- cgit v1.2.3 From 1253662647f4b8a68062b420f2dad5c11a8a3c85 Mon Sep 17 00:00:00 2001 From: Aurelien Jarno Date: Wed, 22 Apr 2009 09:18:28 +0200 Subject: chrt: don't assume SCHED_BATCH and SCHED_IDLE exist SCHED_FIFO, SCHED_OTHER, SCHED_RR are part of POSIX 1003.1b Process Scheduling, so it is correct to assume they always exists. SCHED_BATCH and SCHED_IDLE are Linux specific, we should not assume they exists. Defining SCHED_BATCH and SCHED_IDLE to random values (ie the ones found on Linux systems) is not an option as they may *collide* with the one of other systems. For example on GNU/kFreeBSD we have: #define SCHED_RR 3 and on Linux we have: #define SCHED_BATCH 3 [kzak@redhat.com: - add "Linux specific" notes to chrt.1 - add a note about BATCH and PR conflict to this commit message] Signed-off-by: Aurelien Jarno Signed-off-by: Karel Zak --- schedutils/chrt.1 | 2 ++ schedutils/chrt.c | 29 +++++++++++++++++++++++++---- 2 files changed, 27 insertions(+), 4 deletions(-) diff --git a/schedutils/chrt.1 b/schedutils/chrt.1 index 83b3dbb0..06c58b47 100644 --- a/schedutils/chrt.1 +++ b/schedutils/chrt.1 @@ -63,6 +63,7 @@ operate on an existing PID and do not launch a new task .B -b, --batch set scheduling policy to .BR SCHED_BATCH +(Linux specific) .TP .B -f, --fifo set scheduling policy to @@ -71,6 +72,7 @@ set scheduling policy to .B -i, --idle set schedulng policy to .BR SCHED_IDLE +(Linux specific) .TP .B -m, --max show minimum and maximum valid priorities, then exit diff --git a/schedutils/chrt.c b/schedutils/chrt.c index dcd05240..7d6bb2db 100644 --- a/schedutils/chrt.c +++ b/schedutils/chrt.c @@ -34,7 +34,7 @@ /* the SCHED_BATCH is supported since Linux 2.6.16 * -- temporary workaround for people with old glibc headers */ -#ifndef SCHED_BATCH +#if defined (__linux__) && !defined(SCHED_BATCH) # define SCHED_BATCH 3 #endif @@ -42,7 +42,7 @@ * commit id 0e6aca43e08a62a48d6770e9a159dbec167bf4c6 * -- temporary workaround for people with old glibc headers */ -#ifndef SCHED_IDLE +#if defined (__linux__) && !defined(SCHED_IDLE) # define SCHED_IDLE 5 #endif @@ -95,15 +95,19 @@ static void show_rt_info(const char *what, pid_t pid) case SCHED_FIFO: printf("SCHED_FIFO\n"); break; +#ifdef SCHED_IDLE case SCHED_IDLE: printf("SCHED_IDLE\n"); break; +#endif case SCHED_RR: printf("SCHED_RR\n"); break; +#ifdef SCHED_BATCH case SCHED_BATCH: printf("SCHED_BATCH\n"); break; +#endif default: printf(_("unknown\n")); } @@ -119,8 +123,21 @@ static void show_min_max(void) { int i; int policies[] = { SCHED_OTHER, SCHED_FIFO, SCHED_RR, - SCHED_BATCH, SCHED_IDLE }; - const char *names[] = { "OTHER", "FIFO", "RR", "BATCH", "IDLE" }; +#ifdef SCHED_BATCH + SCHED_BATCH, +#endif +#ifdef SCHED_IDLE + SCHED_IDLE, +#endif + }; + const char *names[] = { "OTHER", "FIFO", "RR", +#ifdef SCHED_BATCH + "BATCH", +#endif +#ifdef SCHED_IDLE + "IDLE", +#endif + }; for (i = 0; i < ARRAY_SIZE(policies); i++) { int max = sched_get_priority_max(policies[i]); @@ -164,13 +181,17 @@ int main(int argc, char *argv[]) switch (i) { case 'b': +#ifdef SCHED_BATCH policy = SCHED_BATCH; +#endif break; case 'f': policy = SCHED_FIFO; break; case 'i': +#ifdef SCHED_IDLE policy = SCHED_IDLE; +#endif break; case 'm': show_min_max(); -- cgit v1.2.3 From 28f0c63388ab7eeeb0953355dc4ff2edc5afe9e8 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Sun, 10 May 2009 16:37:18 -0400 Subject: lscpu: fix cpuid code on x86/PIC If we build lscpu as PIE, we currently get a build failure: lscpu.c: In function 'main': lscpu.c:333: error: can't find a register in class 'BREG' while reloading 'asm' lscpu.c:333: error: 'asm' operand has impossible constraints make[2]: *** [lscpu.o] Error 1 So we need a little bit of register shuffling to keep gcc happy. Signed-off-by: Mike Frysinger --- sys-utils/lscpu.c | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/sys-utils/lscpu.c b/sys-utils/lscpu.c index 3e3fbbeb..6b6082fb 100644 --- a/sys-utils/lscpu.c +++ b/sys-utils/lscpu.c @@ -330,9 +330,19 @@ static inline void cpuid(unsigned int op, unsigned int *eax, unsigned int *ebx, unsigned int *ecx, unsigned int *edx) { - __asm__("cpuid" - : "=a" (*eax), - "=b" (*ebx), + __asm__( +#if defined(__PIC__) && defined(__i386__) + /* x86 PIC cannot clobber ebx -- gcc bitches */ + "pushl %%ebx;" + "cpuid;" + "movl %%ebx, %%esi;" + "popl %%ebx;" + : "=S" (*ebx), +#else + "cpuid;" + : "=b" (*ebx), +#endif + "=a" (*eax), "=c" (*ecx), "=d" (*edx) : "0" (op), "c"(0)); -- cgit v1.2.3 From 83277bc95a84f325d5f3dab3babf2998dc8b4555 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Sun, 10 May 2009 16:57:31 -0400 Subject: losetup: handle symlinks in /dev/loop/ The loop_scandir() expects all the files in /dev/loop/ to be actual devices and not symlinks to devices. However, udev by default sets up symlinks in /dev/loop/ thereby breaking the fallback scan logic when looking for devices more than the default number of 8. Simple way to reproduce is: - - cd /dev/loop - rm -f [2-7] - losetup 0 autogen.sh - mv 1 8 - for n in {1..7} ; do ln -s 0 $n ; done - losetup -f [kay.sievers@vrfy.org: just a note, udev does not do that by default. It is devfs-nonsense, which the "default" never did.] Signed-off-by: Mike Frysinger Reported-by: Mario Bachmann --- mount/lomount.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mount/lomount.c b/mount/lomount.c index d62198ef..c173409e 100644 --- a/mount/lomount.c +++ b/mount/lomount.c @@ -256,7 +256,7 @@ loop_scandir(const char *dirname, int **ary, int hasprefix) *ary = NULL; while((d = readdir(dir))) { - if (d->d_type != DT_BLK && d->d_type != DT_UNKNOWN) + if (d->d_type != DT_BLK && d->d_type != DT_UNKNOWN && d->d_type != DT_LNK) continue; n = name2minor(hasprefix, d->d_name); if (n == -1 || n < NLOOPS_DEFAULT) -- cgit v1.2.3 From 8731ff7813d7a2eacde63630f8d78e2a447bb60d Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Mon, 11 May 2009 11:49:00 +0200 Subject: build-sys: fix "make -C" bug Running: ./configure --with-fsprobe=builtin make -C mount mount causes the following error: gcc -std=gnu99 -DHAVE_CONFIG_H -I. -I.. -include ../config.h -I../include -DLOCALEDIR=\"/home/matthew/util-linux-ng/share/locale\" -fsigned-char -I../libs/blkid/src -g -O2 -MT mount-setproctitle.o -MD -MP -MF .deps/mount-setproctitle.Tpo -c -o mount-setproctitle.o `test -f '../lib/setproctitle.c' || echo './'`../lib/setproctitle.c mv -f .deps/mount-setproctitle.Tpo .deps/mount-setproctitle.Po make -C make: option requires an argument -- 'C' Usage: make [options] [target] ... ... Reported-by: Matthew Burgess Signed-off-by: Karel Zak --- config/include-Makefile.am | 1 + 1 file changed, 1 insertion(+) diff --git a/config/include-Makefile.am b/config/include-Makefile.am index b42a0c3a..d5da619a 100644 --- a/config/include-Makefile.am +++ b/config/include-Makefile.am @@ -17,6 +17,7 @@ dist_noinst_DATA = $(dist_man_MANS) # Paths to in-tree libraries (use ul_ prefix to avoid possible collisions) # ul_libblkid_srcdir = $(top_srcdir)/libs/blkid/src +ul_libblkid_builddir = $(top_builddir)/libs/blkid/src ul_libblkid_la = $(top_builddir)/libs/blkid/src/libblkid.la $(ul_libblkid_la): -- cgit v1.2.3 From 89598ba56618b5972827473c6f6a74dab7a612f4 Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Mon, 11 May 2009 15:06:06 +0200 Subject: build-sys: fix blkid.h include for old e2fsprogs When building util-linux-ng-2.15, I get this: ../lib/fsprobe.c:10:19: error: blkid.h: No such file or directory Unfortunately, the blkid.pc uses -I${includedir}/blkidi since e2fsprogs v1.41.2. The old versions use -I${includedir} only. Reported-by: Robert Schwebel Signed-off-by: Karel Zak --- configure.ac | 14 +++++++++++++- lib/fsprobe.c | 4 ++++ 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 46dc3235..ec41ae60 100644 --- a/configure.ac +++ b/configure.ac @@ -180,7 +180,19 @@ have_volume_id=no if test "x$with_fsprobe" = xblkid; then PKG_CHECK_MODULES(BLKID, blkid, [have_blkid=yes], []) - AC_CHECK_LIB(blkid, blkid_evaluate_tag, [have_blkid_evaluate=yes], []) + if test "x$have_blkid" = xyes; then + old_CFLAGS="$CFLAGS" + old_CPPFLAGS="$CPPFLAGS" + old_LDFLAGS="$LDFLAGS" + CFLAGS="$CFLAGS $BLKID_CFLAGS" + CPPFLAGS="$CPPFLAGS $BLKID_CFLAGS" + LDFLAGS="$LDFLAGS $BLKID_LIBS" + AC_CHECK_HEADERS([blkid.h blkid/blkid.h], [break], []) + AC_CHECK_FUNC(blkid_evaluate_tag, [have_blkid_evaluate=yes], []) + CFLAGS="$old_CFLAGS" + CPPFLAGS="$old_CPPFLAGS" + LDFLAGS="$old_LDFLAGS" + fi elif test "x$with_fsprobe" = xvolume_id; then PKG_CHECK_MODULES(VOLUME_ID, volume_id, [have_volume_id=yes], []) elif test "x$with_fsprobe" = xbuiltin; then diff --git a/lib/fsprobe.c b/lib/fsprobe.c index cd008cc3..c5fa8c63 100644 --- a/lib/fsprobe.c +++ b/lib/fsprobe.c @@ -7,7 +7,11 @@ #include #include +#ifdef HAVE_BLKID_BLKID_H +#include +#else #include +#endif #include "blkdev.h" #include "canonicalize.h" -- cgit v1.2.3 From cfbfb044d2a5c3abf159077ecc12adf8d3a76197 Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Tue, 12 May 2009 21:22:19 +0200 Subject: blkid: make libuuid optional read.c:28:23: error: uuid/uuid.h: No such file or directory make[3]: *** [read.lo] Error 1 make[3]: *** Waiting for unfinished jobs.... Reported-by: Olaf Signed-off-by: Karel Zak --- libs/blkid/src/config.c | 3 --- libs/blkid/src/evaluate.c | 3 --- libs/blkid/src/read.c | 1 - 3 files changed, 7 deletions(-) diff --git a/libs/blkid/src/config.c b/libs/blkid/src/config.c index 2e592181..9091736b 100644 --- a/libs/blkid/src/config.c +++ b/libs/blkid/src/config.c @@ -24,9 +24,6 @@ #include #endif #include -#ifdef HAVE_LIBUUID -#include -#endif #include #include "blkdev.h" diff --git a/libs/blkid/src/evaluate.c b/libs/blkid/src/evaluate.c index a9c9fbab..f0ae1266 100644 --- a/libs/blkid/src/evaluate.c +++ b/libs/blkid/src/evaluate.c @@ -27,9 +27,6 @@ #include #endif #include -#ifdef HAVE_LIBUUID -#include -#endif #include #include "pathnames.h" diff --git a/libs/blkid/src/read.c b/libs/blkid/src/read.c index 41638745..b5e9cd02 100644 --- a/libs/blkid/src/read.c +++ b/libs/blkid/src/read.c @@ -25,7 +25,6 @@ #endif #include "blkidP.h" -#include "uuid/uuid.h" #ifdef HAVE_STRTOULL #define STRTOULL strtoull /* defined in stdlib.h if you try hard enough */ -- cgit v1.2.3 From 45488c4bd600300d2a639e81d443bcc9c41c10bc Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Thu, 14 May 2009 18:04:55 +0200 Subject: blkid: fix "hangs forever with partition type mdraid" > #:> blkid /dev/sda7 > /dev/sda7: UUID="c193d159-1fd4-1a4b-4037-f3433e016f3d" TYPE="mdraid" > > The blkid binary build from the util-linux-ng sources just hangs > forever with 100% cpu load with the same command. Reported-by: Juergen Daubert Signed-off-by: Karel Zak --- libs/blkid/src/probe.c | 28 +++++++++++++++------------- 1 file changed, 15 insertions(+), 13 deletions(-) diff --git a/libs/blkid/src/probe.c b/libs/blkid/src/probe.c index 0e4745ac..b0c0be80 100644 --- a/libs/blkid/src/probe.c +++ b/libs/blkid/src/probe.c @@ -160,6 +160,11 @@ static void blkid_probe_reset_vals(blkid_probe pr) pr->nvals = 0; } +static void blkid_probe_reset_idx(blkid_probe pr) +{ + pr->idx = -1; +} + void blkid_reset_probe(blkid_probe pr) { if (!pr) @@ -169,14 +174,13 @@ void blkid_reset_probe(blkid_probe pr) memset(pr->buf, 0, pr->buf_max); pr->buf_off = 0; pr->buf_len = 0; - pr->idx = 0; if (pr->sbbuf) memset(pr->sbbuf, 0, BLKID_SB_BUFSIZ); pr->sbbuf_len = 0; blkid_probe_reset_vals(pr); + blkid_probe_reset_idx(pr); } - /* * Note that we have two offsets: * @@ -263,7 +267,6 @@ int blkid_probe_set_device(blkid_probe pr, int fd, pr->fd = fd; pr->off = off; pr->size = 0; - pr->idx = 0; if (size) pr->size = size; @@ -307,7 +310,7 @@ int blkid_probe_reset_filter(blkid_probe pr) return -1; if (pr->fltr) memset(pr->fltr, 0, BLKID_FLTR_SIZE * sizeof(unsigned long)); - pr->idx = 0; + blkid_probe_reset_idx(pr); return 0; } @@ -324,9 +327,10 @@ int blkid_probe_filter_types(blkid_probe pr, int flag, char *names[]) if (!pr || !names) return -1; - if (!pr->fltr) + if (!pr->fltr) { pr->fltr = calloc(BLKID_FLTR_SIZE, sizeof(unsigned long)); - else + blkid_probe_reset_idx(pr); + } else blkid_probe_reset_filter(pr); if (!pr->fltr) @@ -355,7 +359,6 @@ int blkid_probe_filter_types(blkid_probe pr, int flag, char *names[]) } } DBG(DEBUG_LOWPROBE, printf("a new probing type-filter initialized\n")); - pr->idx = 0; return 0; } @@ -375,9 +378,10 @@ int blkid_probe_filter_usage(blkid_probe pr, int flag, int usage) if (!pr || !usage) return -1; - if (!pr->fltr) + if (!pr->fltr) { pr->fltr = calloc(BLKID_FLTR_SIZE, sizeof(unsigned long)); - else + blkid_probe_reset_idx(pr); + } else blkid_probe_reset_filter(pr); if (!pr->fltr) @@ -393,7 +397,6 @@ int blkid_probe_filter_usage(blkid_probe pr, int flag, int usage) blkid_bmp_set_item(pr->fltr, i); } DBG(DEBUG_LOWPROBE, printf("a new probing usage-filter initialized\n")); - pr->idx = 0; return 0; } @@ -407,8 +410,8 @@ int blkid_probe_invert_filter(blkid_probe pr) for (i = 0; i < BLKID_FLTR_SIZE; i++) pr->fltr[i] = ~pr->fltr[i]; + blkid_probe_reset_idx(pr); DBG(DEBUG_LOWPROBE, printf("probing filter inverted\n")); - pr->idx = 0; return 0; } @@ -455,8 +458,7 @@ int blkid_do_probe(blkid_probe pr) blkid_probe_reset_vals(pr); - if (pr->idx) - i = pr->idx + 1; + i = pr->idx + 1; if (i < 0 && i >= ARRAY_SIZE(idinfos)) return -1; -- cgit v1.2.3 From 40b1f830b91540befd50ff995e8769e0b09d0372 Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Thu, 14 May 2009 18:29:03 +0200 Subject: blkid: blkid_do_safeprobe() has to be tolerant to RAIDs It's pretty generic that RAID signature is on the same device as FS signature. We have to be tolerant and ignore filesystems signatures on such devices. The RAID signature is always preferred. Signed-off-by: Karel Zak --- libs/blkid/src/probe.c | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/libs/blkid/src/probe.c b/libs/blkid/src/probe.c index b0c0be80..af22e34d 100644 --- a/libs/blkid/src/probe.c +++ b/libs/blkid/src/probe.c @@ -529,6 +529,10 @@ int blkid_do_probe(blkid_probe pr) * This is the same function as blkid_do_probe(), but returns only one result * (cannot be used in while()) and checks for ambivalen results (more * filesystems on the device) -- in such case returns -2. + * + * The function does not check for filesystems when a RAID signature is + * detected. The function also does not check for collision between RAIDs. The + * first detected RAID is returned. */ int blkid_do_safeprobe(blkid_probe pr) { @@ -544,9 +548,12 @@ int blkid_do_safeprobe(blkid_probe pr) first.nvals = pr->nvals; first.idx = pr->idx; } + count++; + + if (idinfos[pr->idx]->usage & BLKID_USAGE_RAID) + break; if (!(idinfos[pr->idx]->flags & BLKID_IDINFO_TOLERANT)) intol++; - count++; } if (rc < 0) return rc; /* error */ -- cgit v1.2.3 From f7f1de581a7933e4a791793e267036c35ae52da3 Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Thu, 14 May 2009 20:28:11 +0200 Subject: blkid: cleanup debug messages and return codes in blkid_do_probe() Signed-off-by: Karel Zak --- libs/blkid/src/probe.c | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/libs/blkid/src/probe.c b/libs/blkid/src/probe.c index af22e34d..38d42762 100644 --- a/libs/blkid/src/probe.c +++ b/libs/blkid/src/probe.c @@ -453,17 +453,16 @@ int blkid_do_probe(blkid_probe pr) { int i = 0; - if (!pr) + if (!pr || pr->idx < -1) return -1; blkid_probe_reset_vals(pr); - i = pr->idx + 1; + DBG(DEBUG_LOWPROBE, + printf("--> starting probing loop [idx=%d]\n", + pr->idx)); - if (i < 0 && i >= ARRAY_SIZE(idinfos)) - return -1; - - DBG(DEBUG_LOWPROBE, printf("--> starting probing loop\n")); + i = pr->idx + 1; for ( ; i < ARRAY_SIZE(idinfos); i++) { const struct blkid_idinfo *id; @@ -518,10 +517,13 @@ int blkid_do_probe(blkid_probe pr) blkid_probe_set_usage(pr, id->usage); DBG(DEBUG_LOWPROBE, - printf("<-- leaving probing loop (type=%s)\n", id->name)); + printf("<-- leaving probing loop (type=%s) [idx=%d]\n", + id->name, pr->idx)); return 0; } - DBG(DEBUG_LOWPROBE, printf("<-- leaving probing loop (failed)\n")); + DBG(DEBUG_LOWPROBE, + printf("<-- leaving probing loop (failed) [idx=%d]\n", + pr->idx)); return 1; } -- cgit v1.2.3 From 281a1782f0d7d9b7e6495e6265d25188e925b3a3 Mon Sep 17 00:00:00 2001 From: Tom Prince Date: Thu, 14 May 2009 22:43:02 -0400 Subject: cal: uClibc has langinfo.h but not _NL_TIME_WEEK_1STDAY. Signed-off-by: Tom Prince --- configure.ac | 2 ++ misc-utils/cal.c | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index ec41ae60..9ab94a85 100644 --- a/configure.ac +++ b/configure.ac @@ -105,6 +105,8 @@ AC_CHECK_HEADERS([linux/raw.h], [AM_CONDITIONAL([HAVE_RAW], [true])], [AM_CONDITIONAL([HAVE_RAW], [false])]) +AC_CHECK_DECLS([_NL_TIME_WEEK_1STDAY],[],[],[[#include ]]) + AC_CHECK_FUNCS( [inet_aton \ fsync \ diff --git a/misc-utils/cal.c b/misc-utils/cal.c index f2d52e8c..a8534b8c 100644 --- a/misc-utils/cal.c +++ b/misc-utils/cal.c @@ -291,7 +291,7 @@ main(int argc, char **argv) { * the locale database, which can be overridden with the * -s (Sunday) or -m (Monday) options. */ -#ifdef HAVE_LANGINFO_H +#if HAVE_DECL__NL_TIME_WEEK_1STDAY /* * You need to use 2 locale variables to get the first day of the week. * This is needed to support first_weekday=2 and first_workday=1 for -- cgit v1.2.3 From 34a48f403a237f86de927988761481903d4ed41d Mon Sep 17 00:00:00 2001 From: Chris Webb Date: Wed, 13 May 2009 15:54:23 +0100 Subject: fdisk: (and cfdisk) fix to be consistent about maximum heads Fix fdisk and cfdisk to be consistent about maximum heads Without this patch, fdisk allows up to 256 heads to be set via the menu, but only up to 255 heads by command line -H. Similarly, cfdisk's -H option also enforces heads <= 255 instead of heads <= 256. The strange limit of 256 comes about because (heads - 1) should fit in a single byte for legacy CHS. Geometries of 256 heads and 32 sectors are seen in disks from other operating systems where cylinder-aligned partitions which are also aligned to a 4MB boundary are wanted. Signed-off-by: Chris Webb --- fdisk/cfdisk.c | 2 +- fdisk/fdisk.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/fdisk/cfdisk.c b/fdisk/cfdisk.c index 96246803..fc0357d2 100644 --- a/fdisk/cfdisk.c +++ b/fdisk/cfdisk.c @@ -107,7 +107,7 @@ #define SECTOR_SIZE 512 -#define MAX_HEADS 255 +#define MAX_HEADS 256 #define MAX_SECTORS 63 #define ACTIVE_FLAG 0x80 diff --git a/fdisk/fdisk.c b/fdisk/fdisk.c index ef75d4ce..aaa01a84 100644 --- a/fdisk/fdisk.c +++ b/fdisk/fdisk.c @@ -2623,7 +2623,7 @@ main(int argc, char **argv) { break; case 'H': user_heads = atoi(optarg); - if (user_heads <= 0 || user_heads >= 256) + if (user_heads <= 0 || user_heads > 256) user_heads = 0; break; case 'S': -- cgit v1.2.3 From ad5f84d8272578c81f1d54953277b1633858da38 Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Thu, 21 May 2009 13:20:10 +0200 Subject: mount: fix undefined reference to `security_get_initial_context' MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit > Gentoo-hardened stable have: sys-libs/libselinux-1.34.14 > I have: > mount.c:(.text+0x12ce): undefined reference to `security_get_initial_context' Reported-by: Максим Бритов Addresses-Gentoo-Bug: #270168 Signed-off-by: Karel Zak --- configure.ac | 5 +++++ mount/mount.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 9ab94a85..69d63e01 100644 --- a/configure.ac +++ b/configure.ac @@ -656,6 +656,11 @@ fi if test "x$have_selinux" = xyes; then SELINUX_LIBS="-lselinux -lsepol" SELINUX_LIBS_STATIC="-lselinux -lsepol" + old_LDFLAGS="$LDFLAGS" + LDFLAGS="$LDFLAGS $SELINUX_LIBS" + # This function is missing in old libselinux 1.xx versions + AC_CHECK_FUNCS([security_get_initial_context]) + LDFLAGS="$old_LDFLAGS" fi AC_SUBST([SELINUX_LIBS]) AC_SUBST([SELINUX_LIBS_STATIC]) diff --git a/mount/mount.c b/mount/mount.c index f48f9d40..cc5b88ae 100644 --- a/mount/mount.c +++ b/mount/mount.c @@ -1561,7 +1561,7 @@ mount_retry: out: -#ifdef HAVE_LIBSELINUX +#if defined(HAVE_LIBSELINUX) && defined(HAVE_SECURITY_GET_INITIAL_CONTEXT) if (res != EX_FAIL && verbose && is_selinux_enabled() > 0) { security_context_t raw = NULL, def = NULL; -- cgit v1.2.3 From b802c3f6b23c8192eaad391d64e93431dd507625 Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Sat, 16 May 2009 02:25:37 +0200 Subject: libblkid: update man page Signed-off-by: Karel Zak --- libs/blkid/libblkid.3 | 35 ++++++++++++++++++++++++++++++++--- 1 file changed, 32 insertions(+), 3 deletions(-) diff --git a/libs/blkid/libblkid.3 b/libs/blkid/libblkid.3 index 89747ecf..46eb868b 100644 --- a/libs/blkid/libblkid.3 +++ b/libs/blkid/libblkid.3 @@ -5,7 +5,7 @@ .\" This file may be copied under the terms of the GNU Public License. .\" .\" Created Wed Sep 14 12:02:12 2001, Andreas Dilger -.TH LIBBLKID 3 "February 2009" "Linux" "MAINTENANCE COMMANDS"" +.TH LIBBLKID 3 "May 2009" "util-linux-ng" .SH NAME libblkid \- block device identification library .SH SYNOPSIS @@ -45,14 +45,43 @@ some way to locate these devices without enumerating only visible devices, so the use of the cache file is .B required in this situation. +.SH CONFIGURATION FILE +The standard location of the +.I /etc/blkid.conf +config file can be overridden by the environment variable BLKID_CONF. +The following options control the libblkid library: +.TP +.I SEND_UEVENT= +Sends uevent when +.I /dev/disk/by-{label,uuid}/ +symlink does not match with LABEL or UUID on the device. Default is "yes". +.TP +.I CACHE_FILE= +Overrides the standard location of the cache file. This setting can be +overridden by the environment variable BLKID_FILE. Default is +.I /etc/blkid.tab. +.TP +.I EVALUATE= +Defines LABEL and UUID evaluation method(s). Currently, the libblkid library +supports "udev" and "scan" methods. More than one methods may be specified in +a comma separated list. Default is "udev,scan". The "udev" method uses udev +.I /dev/disk/by-* +symlinks and the "scan" method scans all block devices from the +.I /proc/partitions +file. .SH AUTHOR .B libblkid was written by Andreas Dilger for the ext2 filesystem utilties, with input from Ted Ts'o. The library was subsequently heavily modified by Ted Ts'o. + +The low-level probing code was rewritten by Karel Zak. .SH FILES -.TP +.TP 18 .I /etc/blkid.tab -Caches data extracted from each recognized block device. +caches data extracted from each recognized block device +.TP +.I /etc/blkid.conf +configuration file .SH AVAILABILITY .B libblkid is part of the util-linux-ng package since version 2.15 and is available from -- cgit v1.2.3 From 5b3f8e4f961298a9ca296f8362a717c1a4dd2ee0 Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Mon, 25 May 2009 10:36:08 +0200 Subject: libblkid: fix reiserfs name Reported-by: Jonas Karlsson Signed-off-by: Karel Zak --- libs/blkid/src/probers/reiserfs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/blkid/src/probers/reiserfs.c b/libs/blkid/src/probers/reiserfs.c index 29e1faa0..f9a46787 100644 --- a/libs/blkid/src/probers/reiserfs.c +++ b/libs/blkid/src/probers/reiserfs.c @@ -95,7 +95,7 @@ static int probe_reiser4(blkid_probe pr, const struct blkid_idmag *mag) const struct blkid_idinfo reiser_idinfo = { - .name = "reiser", + .name = "reiserfs", .usage = BLKID_USAGE_FILESYSTEM, .probefunc = probe_reiser, .magics = -- cgit v1.2.3 From 1e22efe13ddf4ea890dbfc9b3573706ebe04400d Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Mon, 18 May 2009 09:35:32 +0200 Subject: build-sys: add UTIL_{SET,RESTORE}_FLAGS Signed-off-by: Karel Zak --- configure.ac | 29 ++++++++++++++++++++--------- 1 file changed, 20 insertions(+), 9 deletions(-) diff --git a/configure.ac b/configure.ac index 69d63e01..14744923 100644 --- a/configure.ac +++ b/configure.ac @@ -161,6 +161,24 @@ AC_DEFUN([UTIL_CHECK_LIB], [ AM_CONDITIONAL(AS_TR_CPP([HAVE_]suffix), [test [$have_]suffix = yes]) ]) +dnl UTIL_SET_FLAGS(CFLAGS, CPPFLAGS, LDFLAGS) +AC_DEFUN([UTIL_SET_FLAGS], [ + old_CFLAGS="$CFLAGS" + old_CPPFLAGS="$CPPFLAGS" + old_LDFLAGS="$LDFLAGS" + CFLAGS="$CFLAGS $1" + CPPFLAGS="$CPPFLAGS $2" + LDFLAGS="$LDFLAGS $3" +]) + +dnl UTIL_RESTORE_FLAGS() +AC_DEFUN([UTIL_RESTORE_FLAGS], [ + CFLAGS="$old_CFLAGS" + CPPFLAGS="$old_CPPFLAGS" + LDFLAGS="$old_LDFLAGS" +]) + + UTIL_CHECK_LIB(uuid, uuid_is_null) if test "x$have_uuid" = xno; then AC_MSG_WARN([uuid library is not found; mkswap(8) will not generate UUIDs]) @@ -183,17 +201,10 @@ have_volume_id=no if test "x$with_fsprobe" = xblkid; then PKG_CHECK_MODULES(BLKID, blkid, [have_blkid=yes], []) if test "x$have_blkid" = xyes; then - old_CFLAGS="$CFLAGS" - old_CPPFLAGS="$CPPFLAGS" - old_LDFLAGS="$LDFLAGS" - CFLAGS="$CFLAGS $BLKID_CFLAGS" - CPPFLAGS="$CPPFLAGS $BLKID_CFLAGS" - LDFLAGS="$LDFLAGS $BLKID_LIBS" + UTIL_SET_FLAGS($BLKID_CFLAGS, $BLKID_CFLAGS, $BLKID_LIBS) AC_CHECK_HEADERS([blkid.h blkid/blkid.h], [break], []) AC_CHECK_FUNC(blkid_evaluate_tag, [have_blkid_evaluate=yes], []) - CFLAGS="$old_CFLAGS" - CPPFLAGS="$old_CPPFLAGS" - LDFLAGS="$old_LDFLAGS" + UTIL_RESTORE_FLAGS fi elif test "x$with_fsprobe" = xvolume_id; then PKG_CHECK_MODULES(VOLUME_ID, volume_id, [have_volume_id=yes], []) -- cgit v1.2.3 From 30a634f075037fc6211e7837cbe7bb778bf7efce Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Wed, 27 May 2009 14:14:12 +0200 Subject: build-sys: fix blkid detection in configure.ac Changes: - volume_id/blkid is not required when --disable-mount + --disable-fsck - volume_id/blkid detection works on systems without pkg-config (This patch is simplified version of the patch f910b5594f4293046902a6ed1d05e7f6ce0ee6b9 from master (2.16) branch.) Signed-off-by: Karel Zak --- configure.ac | 95 ++++++++++++++++++++++++++++++++---------------------------- 1 file changed, 50 insertions(+), 45 deletions(-) diff --git a/configure.ac b/configure.ac index 14744923..ecf96c82 100644 --- a/configure.ac +++ b/configure.ac @@ -178,6 +178,28 @@ AC_DEFUN([UTIL_RESTORE_FLAGS], [ LDFLAGS="$old_LDFLAGS" ]) +AC_ARG_ENABLE([mount], + AS_HELP_STRING([--disable-mount], [do not build mount utilities]), + [], enable_mount=check +) +build_mount=yes +if test "x$enable_mount" = xcheck; then + if test "x$linux_os" = xno; then + AC_MSG_WARN([non-linux system; do not build mount utilities]) + build_mount=no + fi +elif test "x$enable_mount" = xno; then + build_mount=no +fi +AM_CONDITIONAL(BUILD_MOUNT, test "x$build_mount" = xyes) + + +AC_ARG_ENABLE([fsck], + AS_HELP_STRING([--enable-fsck], [do build fsck]), + [], enable_fsck=no +) +AM_CONDITIONAL(BUILD_FSCK, test "x$enable_fsck" = xyes) + UTIL_CHECK_LIB(uuid, uuid_is_null) if test "x$have_uuid" = xno; then @@ -194,33 +216,46 @@ AC_ARG_WITH([fsprobe], ) build_libblkid=no -have_blkid_evaluate=no have_blkid=no have_volume_id=no -if test "x$with_fsprobe" = xblkid; then - PKG_CHECK_MODULES(BLKID, blkid, [have_blkid=yes], []) - if test "x$have_blkid" = xyes; then - UTIL_SET_FLAGS($BLKID_CFLAGS, $BLKID_CFLAGS, $BLKID_LIBS) - AC_CHECK_HEADERS([blkid.h blkid/blkid.h], [break], []) - AC_CHECK_FUNC(blkid_evaluate_tag, [have_blkid_evaluate=yes], []) - UTIL_RESTORE_FLAGS - fi -elif test "x$with_fsprobe" = xvolume_id; then - PKG_CHECK_MODULES(VOLUME_ID, volume_id, [have_volume_id=yes], []) -elif test "x$with_fsprobe" = xbuiltin; then +if test "x$with_fsprobe" = xbuiltin; then have_blkid=yes build_libblkid=yes - have_blkid_evaluate=yes AC_SUBST(LIBBLKID_VERSION) AC_DEFINE_UNQUOTED(LIBBLKID_VERSION, "$LIBBLKID_VERSION", [libblkid version string]) AC_DEFINE_UNQUOTED(LIBBLKID_DATE, "$LIBBLKID_DATE", [libblkid date string]) + AC_DEFINE(HAVE_BLKID_EVALUATE_TAG, 1, [Define to 1 if you have the blkid_evaluate_tag().]) + AC_DEFINE(HAVE_BLKID_H, 1, [Define to 1 if you have the header file.]) +elif test "x$build_mount" = xyes || test "x$enable_fsck" = xyes; then + if test "x$with_fsprobe" = xblkid; then + PKG_CHECK_MODULES(BLKID, blkid, [have_blkid=yes], [have_blkid=no]) + if test "x$have_blkid" = xno; then + # system without pkg-config or so, try classic check + AC_CHECK_LIB(blkid, blkid_get_cache, [have_blkid=yes], [have_blkid=no]) + fi + if test "x$have_blkid" = xyes; then + UTIL_SET_FLAGS($BLKID_CFLAGS, $BLKID_CFLAGS, $BLKID_LIBS) + AC_CHECK_HEADERS([blkid.h blkid/blkid.h], [break], []) + UTIL_RESTORE_FLAGS + fi + elif test "x$with_fsprobe" = xvolume_id; then + PKG_CHECK_MODULES(VOLUME_ID, volume_id, [have_volume_id=yes], [have_volume_id=no]) + if test "x$have_volume_id" = xno; then + # system without pkg-config or so, try classic check + AC_CHECK_LIB(volume_id, volume_id_probe_all, [have_volume_id=yes], [have_volume_id=no]) + fi + fi fi if test "x$have_blkid" = xyes; then AC_DEFINE(HAVE_LIBBLKID, 1, [Define to 1 if you have the -lblkid.]) - if test "x$have_blkid_evaluate" = xyes; then - AC_DEFINE(HAVE_BLKID_EVALUATE_TAG, 1, [Define to 1 if you have the blkid_evaluate_tag().]) +elif test "x$have_volume_id" = xno; then + if test "x$build_mount" = xyes; then + AC_MSG_ERROR([libblkid or libvolume_id is needed to build util-linux-ng mount]) + fi + if test "x$enable_fsck" = xyes; then + AC_MSG_ERROR([libblkid or libvoume_id is needed to build util-linux-ng fsck]) fi fi @@ -229,36 +264,6 @@ AM_CONDITIONAL(HAVE_VOLUME_ID, test "x$have_volume_id" = xyes) AM_CONDITIONAL(BUILD_LIBBLKID, test "x$build_libblkid" = xyes) -AC_ARG_ENABLE([mount], - AS_HELP_STRING([--disable-mount], [do not build mount utilities]), - [], enable_mount=check -) -build_mount=yes -if test "${enable_mount}" = "no"; then - build_mount=no -elif test "x$linux_os" = xyes; then - if test "x$have_blkid" = xno && test "x$have_volume_id" = xno; then - AC_MSG_ERROR([blkid or volume_id is needed to build util-linux-ng mount utilities]) - fi -else - AC_MSG_WARN([non-linux system; do not build mount utilities]) - build_mount=no -fi -AM_CONDITIONAL(BUILD_MOUNT, test "x$build_mount" = xyes) - - -AC_ARG_ENABLE([fsck], - AS_HELP_STRING([--enable-fsck], [do build fsck]), - [], enable_fsck=no -) -if test "x$enable_fsck" = xyes; then - if test "x$have_blkid" = xno && test "x$have_volume_id" = xno; then - AC_MSG_ERROR([libblkid or libvolume_id is needed to build util-linux-ng fsck]) - fi -fi -AM_CONDITIONAL(BUILD_FSCK, test "x$enable_fsck" = xyes) - - dnl UTIL_PKG_STATIC(VARIABLE, MODULES) dnl ---------------------------------- AC_DEFUN([UTIL_PKG_STATIC], [ -- cgit v1.2.3 From 090e9f17072816be117258a307e62a2bb3e0975d Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Wed, 27 May 2009 15:03:22 +0200 Subject: tests: add mdraid libblkid test Signed-off-by: Karel Zak --- tests/expected/blkid/low-probe-mdraid | 5 +++++ tests/ts/blkid/images/mdraid.img.bz2 | Bin 0 -> 160 bytes 2 files changed, 5 insertions(+) create mode 100644 tests/expected/blkid/low-probe-mdraid create mode 100644 tests/ts/blkid/images/mdraid.img.bz2 diff --git a/tests/expected/blkid/low-probe-mdraid b/tests/expected/blkid/low-probe-mdraid new file mode 100644 index 00000000..0613dfe0 --- /dev/null +++ b/tests/expected/blkid/low-probe-mdraid @@ -0,0 +1,5 @@ +ID_FS_TYPE=linux_raid_member +ID_FS_USAGE=raid +ID_FS_UUID=37c76b91-011a-05c5-d30c-1fd4c5c3dbbc +ID_FS_UUID_ENC=37c76b91-011a-05c5-d30c-1fd4c5c3dbbc +ID_FS_VERSION=0.90.0 diff --git a/tests/ts/blkid/images/mdraid.img.bz2 b/tests/ts/blkid/images/mdraid.img.bz2 new file mode 100644 index 00000000..d5a67a34 Binary files /dev/null and b/tests/ts/blkid/images/mdraid.img.bz2 differ -- cgit v1.2.3 From 9728b6803657d38f1afa0dd0bd0066812c5739c3 Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Wed, 27 May 2009 15:05:02 +0200 Subject: tests: fix reiserfs test For more details see 5b3f8e4f961298a9ca296f8362a717c1a4dd2ee0. Signed-off-by: Karel Zak --- tests/expected/blkid/low-probe-reiser3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/expected/blkid/low-probe-reiser3 b/tests/expected/blkid/low-probe-reiser3 index e046c418..7d9e0147 100644 --- a/tests/expected/blkid/low-probe-reiser3 +++ b/tests/expected/blkid/low-probe-reiser3 @@ -1,6 +1,6 @@ ID_FS_LABEL_ENC=TESTREISER ID_FS_LABEL=TESTREISER -ID_FS_TYPE=reiser +ID_FS_TYPE=reiserfs ID_FS_USAGE=filesystem ID_FS_UUID=9efe7863-b124-46dc-ad68-8ecd04230a7b ID_FS_UUID_ENC=9efe7863-b124-46dc-ad68-8ecd04230a7b -- cgit v1.2.3 From b78a8da7a4d77b7649da647b30efeff9f8275031 Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Wed, 27 May 2009 15:20:01 +0200 Subject: tests: don't run some mount tests for non-root users Signed-off-by: Karel Zak --- tests/functions.sh | 6 +++--- tests/ts/mount/noncanonical | 1 + tests/ts/mount/paths | 1 + 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/tests/functions.sh b/tests/functions.sh index b2e17f3c..d07b7e31 100644 --- a/tests/functions.sh +++ b/tests/functions.sh @@ -153,7 +153,7 @@ function ts_init_subtest { [ $TS_NSUBTESTS -eq 0 ] && echo TS_NSUBTESTS=$(( $TS_NSUBTESTS + 1 )) - printf "%18s: %-27s ..." "" "$TS_SUBNAME" + printf "%16s: %-27s ..." "" "$TS_SUBNAME" } function ts_init { @@ -161,7 +161,7 @@ function ts_init { ts_init_env "$*" - printf "%15s: %-30s ..." "$TS_COMPONENT" "$TS_DESC" + printf "%13s: %-30s ..." "$TS_COMPONENT" "$TS_DESC" [ "$is_fake" == "yes" ] && ts_skip "fake mode" } @@ -218,7 +218,7 @@ function ts_finalize { done if [ $TS_NSUBTESTS -ne 0 ]; then - printf "%13s..." + printf "%11s..." if [ $TS_NSUBFAILED -ne 0 ]; then ts_failed "$TS_NSUBFAILED from $TS_NSUBTESTS sub-tests" else diff --git a/tests/ts/mount/noncanonical b/tests/ts/mount/noncanonical index d9be68be..31149923 100755 --- a/tests/ts/mount/noncanonical +++ b/tests/ts/mount/noncanonical @@ -20,6 +20,7 @@ TS_DESC="non canonical path" . $TS_TOPDIR/functions.sh ts_init "$*" +ts_skip_nonroot [ ! -e "/etc" ] && ts_skip "/etc not such file of directory" diff --git a/tests/ts/mount/paths b/tests/ts/mount/paths index 93b44ae9..bb2cabf3 100755 --- a/tests/ts/mount/paths +++ b/tests/ts/mount/paths @@ -20,6 +20,7 @@ TS_DESC="basic paths" . $TS_TOPDIR/functions.sh ts_init "$*" +ts_skip_nonroot $TS_CMD_MOUNT -n -f -v -v -v /dev/dummy /mnt &> $TS_OUTPUT -- cgit v1.2.3 From ee8a029a8ca46ea8c690eef723c92319e846dbbe Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Wed, 27 May 2009 15:47:49 +0200 Subject: tests: remove broken Xen dumps for lscpu Signed-off-by: Karel Zak --- .../lscpu/dumps/i386-xenpara/proc/bus/pci/devices | 0 tests/ts/lscpu/dumps/i386-xenpara/proc/cpuinfo | 38 ---------------------- .../lscpu/dumps/i386-xenpara/proc/xen/capabilities | 0 .../sys/devices/system/cpu/cpu0/cache/index0/level | 1 - .../system/cpu/cpu0/cache/index0/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu0/cache/index0/size | 1 - .../sys/devices/system/cpu/cpu0/cache/index0/type | 1 - .../sys/devices/system/cpu/cpu0/cache/index1/level | 1 - .../system/cpu/cpu0/cache/index1/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu0/cache/index1/size | 1 - .../sys/devices/system/cpu/cpu0/cache/index1/type | 1 - .../sys/devices/system/cpu/cpu0/cache/index2/level | 1 - .../system/cpu/cpu0/cache/index2/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu0/cache/index2/size | 1 - .../sys/devices/system/cpu/cpu0/cache/index2/type | 1 - .../dumps/x86_64-xenfull/proc/bus/pci/devices | 8 ----- tests/ts/lscpu/dumps/x86_64-xenfull/proc/cpuinfo | 38 ---------------------- .../sys/devices/system/cpu/cpu0/cache/index0/level | 1 - .../system/cpu/cpu0/cache/index0/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu0/cache/index0/size | 1 - .../sys/devices/system/cpu/cpu0/cache/index0/type | 1 - .../sys/devices/system/cpu/cpu0/cache/index1/level | 1 - .../system/cpu/cpu0/cache/index1/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu0/cache/index1/size | 1 - .../sys/devices/system/cpu/cpu0/cache/index1/type | 1 - .../sys/devices/system/cpu/cpu0/cache/index2/level | 1 - .../system/cpu/cpu0/cache/index2/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu0/cache/index2/size | 1 - .../sys/devices/system/cpu/cpu0/cache/index2/type | 1 - .../devices/system/cpu/cpu0/topology/core_siblings | 1 - .../system/cpu/cpu0/topology/thread_siblings | 1 - .../sys/devices/system/node/node0/cpumap | 1 - 32 files changed, 111 deletions(-) delete mode 100644 tests/ts/lscpu/dumps/i386-xenpara/proc/bus/pci/devices delete mode 100644 tests/ts/lscpu/dumps/i386-xenpara/proc/cpuinfo delete mode 100644 tests/ts/lscpu/dumps/i386-xenpara/proc/xen/capabilities delete mode 100644 tests/ts/lscpu/dumps/i386-xenpara/sys/devices/system/cpu/cpu0/cache/index0/level delete mode 100644 tests/ts/lscpu/dumps/i386-xenpara/sys/devices/system/cpu/cpu0/cache/index0/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/i386-xenpara/sys/devices/system/cpu/cpu0/cache/index0/size delete mode 100644 tests/ts/lscpu/dumps/i386-xenpara/sys/devices/system/cpu/cpu0/cache/index0/type delete mode 100644 tests/ts/lscpu/dumps/i386-xenpara/sys/devices/system/cpu/cpu0/cache/index1/level delete mode 100644 tests/ts/lscpu/dumps/i386-xenpara/sys/devices/system/cpu/cpu0/cache/index1/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/i386-xenpara/sys/devices/system/cpu/cpu0/cache/index1/size delete mode 100644 tests/ts/lscpu/dumps/i386-xenpara/sys/devices/system/cpu/cpu0/cache/index1/type delete mode 100644 tests/ts/lscpu/dumps/i386-xenpara/sys/devices/system/cpu/cpu0/cache/index2/level delete mode 100644 tests/ts/lscpu/dumps/i386-xenpara/sys/devices/system/cpu/cpu0/cache/index2/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/i386-xenpara/sys/devices/system/cpu/cpu0/cache/index2/size delete mode 100644 tests/ts/lscpu/dumps/i386-xenpara/sys/devices/system/cpu/cpu0/cache/index2/type delete mode 100644 tests/ts/lscpu/dumps/x86_64-xenfull/proc/bus/pci/devices delete mode 100644 tests/ts/lscpu/dumps/x86_64-xenfull/proc/cpuinfo delete mode 100644 tests/ts/lscpu/dumps/x86_64-xenfull/sys/devices/system/cpu/cpu0/cache/index0/level delete mode 100644 tests/ts/lscpu/dumps/x86_64-xenfull/sys/devices/system/cpu/cpu0/cache/index0/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/x86_64-xenfull/sys/devices/system/cpu/cpu0/cache/index0/size delete mode 100644 tests/ts/lscpu/dumps/x86_64-xenfull/sys/devices/system/cpu/cpu0/cache/index0/type delete mode 100644 tests/ts/lscpu/dumps/x86_64-xenfull/sys/devices/system/cpu/cpu0/cache/index1/level delete mode 100644 tests/ts/lscpu/dumps/x86_64-xenfull/sys/devices/system/cpu/cpu0/cache/index1/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/x86_64-xenfull/sys/devices/system/cpu/cpu0/cache/index1/size delete mode 100644 tests/ts/lscpu/dumps/x86_64-xenfull/sys/devices/system/cpu/cpu0/cache/index1/type delete mode 100644 tests/ts/lscpu/dumps/x86_64-xenfull/sys/devices/system/cpu/cpu0/cache/index2/level delete mode 100644 tests/ts/lscpu/dumps/x86_64-xenfull/sys/devices/system/cpu/cpu0/cache/index2/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/x86_64-xenfull/sys/devices/system/cpu/cpu0/cache/index2/size delete mode 100644 tests/ts/lscpu/dumps/x86_64-xenfull/sys/devices/system/cpu/cpu0/cache/index2/type delete mode 100644 tests/ts/lscpu/dumps/x86_64-xenfull/sys/devices/system/cpu/cpu0/topology/core_siblings delete mode 100644 tests/ts/lscpu/dumps/x86_64-xenfull/sys/devices/system/cpu/cpu0/topology/thread_siblings delete mode 100644 tests/ts/lscpu/dumps/x86_64-xenfull/sys/devices/system/node/node0/cpumap diff --git a/tests/ts/lscpu/dumps/i386-xenpara/proc/bus/pci/devices b/tests/ts/lscpu/dumps/i386-xenpara/proc/bus/pci/devices deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/ts/lscpu/dumps/i386-xenpara/proc/cpuinfo b/tests/ts/lscpu/dumps/i386-xenpara/proc/cpuinfo deleted file mode 100644 index 14a24da8..00000000 --- a/tests/ts/lscpu/dumps/i386-xenpara/proc/cpuinfo +++ /dev/null @@ -1,38 +0,0 @@ -processor : 0 -vendor_id : GenuineIntel -cpu family : 6 -model : 23 -model name : Intel(R) Xeon(R) CPU L5420 @ 2.50GHz -stepping : 6 -cpu MHz : 2493.776 -cache size : 6144 KB -fdiv_bug : no -hlt_bug : no -f00f_bug : no -coma_bug : no -fpu : yes -fpu_exception : yes -cpuid level : 10 -wp : yes -flags : fpu tsc msr pae mce cx8 apic mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe nx lm constant_tsc pni monitor ds_cpl vmx est tm2 cx16 xtpr lahf_lm -bogomips : 6236.83 - -processor : 1 -vendor_id : GenuineIntel -cpu family : 6 -model : 23 -model name : Intel(R) Xeon(R) CPU L5420 @ 2.50GHz -stepping : 6 -cpu MHz : 2493.776 -cache size : 6144 KB -fdiv_bug : no -hlt_bug : no -f00f_bug : no -coma_bug : no -fpu : yes -fpu_exception : yes -cpuid level : 10 -wp : yes -flags : fpu tsc msr pae mce cx8 apic mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe nx lm constant_tsc up pni monitor ds_cpl vmx est tm2 cx16 xtpr lahf_lm -bogomips : 6236.83 - diff --git a/tests/ts/lscpu/dumps/i386-xenpara/proc/xen/capabilities b/tests/ts/lscpu/dumps/i386-xenpara/proc/xen/capabilities deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/ts/lscpu/dumps/i386-xenpara/sys/devices/system/cpu/cpu0/cache/index0/level b/tests/ts/lscpu/dumps/i386-xenpara/sys/devices/system/cpu/cpu0/cache/index0/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/i386-xenpara/sys/devices/system/cpu/cpu0/cache/index0/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/i386-xenpara/sys/devices/system/cpu/cpu0/cache/index0/shared_cpu_map b/tests/ts/lscpu/dumps/i386-xenpara/sys/devices/system/cpu/cpu0/cache/index0/shared_cpu_map deleted file mode 100644 index d3476039..00000000 --- a/tests/ts/lscpu/dumps/i386-xenpara/sys/devices/system/cpu/cpu0/cache/index0/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000001 diff --git a/tests/ts/lscpu/dumps/i386-xenpara/sys/devices/system/cpu/cpu0/cache/index0/size b/tests/ts/lscpu/dumps/i386-xenpara/sys/devices/system/cpu/cpu0/cache/index0/size deleted file mode 100644 index 56b868b2..00000000 --- a/tests/ts/lscpu/dumps/i386-xenpara/sys/devices/system/cpu/cpu0/cache/index0/size +++ /dev/null @@ -1 +0,0 @@ -32K diff --git a/tests/ts/lscpu/dumps/i386-xenpara/sys/devices/system/cpu/cpu0/cache/index0/type b/tests/ts/lscpu/dumps/i386-xenpara/sys/devices/system/cpu/cpu0/cache/index0/type deleted file mode 100644 index 0b7088ec..00000000 --- a/tests/ts/lscpu/dumps/i386-xenpara/sys/devices/system/cpu/cpu0/cache/index0/type +++ /dev/null @@ -1 +0,0 @@ -Data diff --git a/tests/ts/lscpu/dumps/i386-xenpara/sys/devices/system/cpu/cpu0/cache/index1/level b/tests/ts/lscpu/dumps/i386-xenpara/sys/devices/system/cpu/cpu0/cache/index1/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/i386-xenpara/sys/devices/system/cpu/cpu0/cache/index1/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/i386-xenpara/sys/devices/system/cpu/cpu0/cache/index1/shared_cpu_map b/tests/ts/lscpu/dumps/i386-xenpara/sys/devices/system/cpu/cpu0/cache/index1/shared_cpu_map deleted file mode 100644 index d3476039..00000000 --- a/tests/ts/lscpu/dumps/i386-xenpara/sys/devices/system/cpu/cpu0/cache/index1/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000001 diff --git a/tests/ts/lscpu/dumps/i386-xenpara/sys/devices/system/cpu/cpu0/cache/index1/size b/tests/ts/lscpu/dumps/i386-xenpara/sys/devices/system/cpu/cpu0/cache/index1/size deleted file mode 100644 index 56b868b2..00000000 --- a/tests/ts/lscpu/dumps/i386-xenpara/sys/devices/system/cpu/cpu0/cache/index1/size +++ /dev/null @@ -1 +0,0 @@ -32K diff --git a/tests/ts/lscpu/dumps/i386-xenpara/sys/devices/system/cpu/cpu0/cache/index1/type b/tests/ts/lscpu/dumps/i386-xenpara/sys/devices/system/cpu/cpu0/cache/index1/type deleted file mode 100644 index 9a53cbfa..00000000 --- a/tests/ts/lscpu/dumps/i386-xenpara/sys/devices/system/cpu/cpu0/cache/index1/type +++ /dev/null @@ -1 +0,0 @@ -Instruction diff --git a/tests/ts/lscpu/dumps/i386-xenpara/sys/devices/system/cpu/cpu0/cache/index2/level b/tests/ts/lscpu/dumps/i386-xenpara/sys/devices/system/cpu/cpu0/cache/index2/level deleted file mode 100644 index 0cfbf088..00000000 --- a/tests/ts/lscpu/dumps/i386-xenpara/sys/devices/system/cpu/cpu0/cache/index2/level +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/ts/lscpu/dumps/i386-xenpara/sys/devices/system/cpu/cpu0/cache/index2/shared_cpu_map b/tests/ts/lscpu/dumps/i386-xenpara/sys/devices/system/cpu/cpu0/cache/index2/shared_cpu_map deleted file mode 100644 index b9ad9ed2..00000000 --- a/tests/ts/lscpu/dumps/i386-xenpara/sys/devices/system/cpu/cpu0/cache/index2/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000003 diff --git a/tests/ts/lscpu/dumps/i386-xenpara/sys/devices/system/cpu/cpu0/cache/index2/size b/tests/ts/lscpu/dumps/i386-xenpara/sys/devices/system/cpu/cpu0/cache/index2/size deleted file mode 100644 index fd6858c5..00000000 --- a/tests/ts/lscpu/dumps/i386-xenpara/sys/devices/system/cpu/cpu0/cache/index2/size +++ /dev/null @@ -1 +0,0 @@ -6144K diff --git a/tests/ts/lscpu/dumps/i386-xenpara/sys/devices/system/cpu/cpu0/cache/index2/type b/tests/ts/lscpu/dumps/i386-xenpara/sys/devices/system/cpu/cpu0/cache/index2/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/i386-xenpara/sys/devices/system/cpu/cpu0/cache/index2/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/x86_64-xenfull/proc/bus/pci/devices b/tests/ts/lscpu/dumps/x86_64-xenfull/proc/bus/pci/devices deleted file mode 100644 index e977cd23..00000000 --- a/tests/ts/lscpu/dumps/x86_64-xenfull/proc/bus/pci/devices +++ /dev/null @@ -1,8 +0,0 @@ -0000 80861237 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -0008 80867000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -0009 80867010 0 0 0 0 0 c001 0 0 0 0 0 0 10 0 0 PIIX_IDE -000a 80867113 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -000b 80867020 b1 0 0 0 0 c021 0 0 0 0 0 0 20 0 0 uhci_hcd -0010 101300b8 0 f0000008 f2000000 0 0 0 0 2 2000000 1000 0 0 0 0 0 -0018 58530001 a9 c101 f3000008 0 0 0 0 0 100 1000000 0 0 0 0 0 xen-platform-pci -0020 10ec8139 b9 c201 f4000000 0 0 0 0 0 100 100 0 0 0 0 0 8139cp diff --git a/tests/ts/lscpu/dumps/x86_64-xenfull/proc/cpuinfo b/tests/ts/lscpu/dumps/x86_64-xenfull/proc/cpuinfo deleted file mode 100644 index ebd29f48..00000000 --- a/tests/ts/lscpu/dumps/x86_64-xenfull/proc/cpuinfo +++ /dev/null @@ -1,38 +0,0 @@ -processor : 0 -vendor_id : GenuineIntel -cpu family : 6 -model : 23 -model name : Intel(R) Xeon(R) CPU L5420 @ 2.50GHz -stepping : 6 -cpu MHz : 2493.900 -cache size : 6144 KB -fpu : yes -fpu_exception : yes -cpuid level : 10 -wp : yes -flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat clflush dts mmx fxsr sse sse2 ss syscall nx lm constant_tsc pni ds_cpl cx16 xtpr lahf_lm -bogomips : 5002.01 -clflush size : 64 -cache_alignment : 64 -address sizes : 38 bits physical, 48 bits virtual -power management: - -processor : 1 -vendor_id : GenuineIntel -cpu family : 6 -model : 23 -model name : Intel(R) Xeon(R) CPU L5420 @ 2.50GHz -stepping : 6 -cpu MHz : 2493.900 -cache size : 6144 KB -fpu : yes -fpu_exception : yes -cpuid level : 10 -wp : yes -flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat clflush dts mmx fxsr sse sse2 ss syscall nx lm constant_tsc pni ds_cpl cx16 xtpr lahf_lm -bogomips : 4989.49 -clflush size : 64 -cache_alignment : 64 -address sizes : 38 bits physical, 48 bits virtual -power management: - diff --git a/tests/ts/lscpu/dumps/x86_64-xenfull/sys/devices/system/cpu/cpu0/cache/index0/level b/tests/ts/lscpu/dumps/x86_64-xenfull/sys/devices/system/cpu/cpu0/cache/index0/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/x86_64-xenfull/sys/devices/system/cpu/cpu0/cache/index0/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/x86_64-xenfull/sys/devices/system/cpu/cpu0/cache/index0/shared_cpu_map b/tests/ts/lscpu/dumps/x86_64-xenfull/sys/devices/system/cpu/cpu0/cache/index0/shared_cpu_map deleted file mode 100644 index 6dcc80c7..00000000 --- a/tests/ts/lscpu/dumps/x86_64-xenfull/sys/devices/system/cpu/cpu0/cache/index0/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000001 diff --git a/tests/ts/lscpu/dumps/x86_64-xenfull/sys/devices/system/cpu/cpu0/cache/index0/size b/tests/ts/lscpu/dumps/x86_64-xenfull/sys/devices/system/cpu/cpu0/cache/index0/size deleted file mode 100644 index 56b868b2..00000000 --- a/tests/ts/lscpu/dumps/x86_64-xenfull/sys/devices/system/cpu/cpu0/cache/index0/size +++ /dev/null @@ -1 +0,0 @@ -32K diff --git a/tests/ts/lscpu/dumps/x86_64-xenfull/sys/devices/system/cpu/cpu0/cache/index0/type b/tests/ts/lscpu/dumps/x86_64-xenfull/sys/devices/system/cpu/cpu0/cache/index0/type deleted file mode 100644 index 0b7088ec..00000000 --- a/tests/ts/lscpu/dumps/x86_64-xenfull/sys/devices/system/cpu/cpu0/cache/index0/type +++ /dev/null @@ -1 +0,0 @@ -Data diff --git a/tests/ts/lscpu/dumps/x86_64-xenfull/sys/devices/system/cpu/cpu0/cache/index1/level b/tests/ts/lscpu/dumps/x86_64-xenfull/sys/devices/system/cpu/cpu0/cache/index1/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/x86_64-xenfull/sys/devices/system/cpu/cpu0/cache/index1/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/x86_64-xenfull/sys/devices/system/cpu/cpu0/cache/index1/shared_cpu_map b/tests/ts/lscpu/dumps/x86_64-xenfull/sys/devices/system/cpu/cpu0/cache/index1/shared_cpu_map deleted file mode 100644 index 6dcc80c7..00000000 --- a/tests/ts/lscpu/dumps/x86_64-xenfull/sys/devices/system/cpu/cpu0/cache/index1/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000001 diff --git a/tests/ts/lscpu/dumps/x86_64-xenfull/sys/devices/system/cpu/cpu0/cache/index1/size b/tests/ts/lscpu/dumps/x86_64-xenfull/sys/devices/system/cpu/cpu0/cache/index1/size deleted file mode 100644 index 56b868b2..00000000 --- a/tests/ts/lscpu/dumps/x86_64-xenfull/sys/devices/system/cpu/cpu0/cache/index1/size +++ /dev/null @@ -1 +0,0 @@ -32K diff --git a/tests/ts/lscpu/dumps/x86_64-xenfull/sys/devices/system/cpu/cpu0/cache/index1/type b/tests/ts/lscpu/dumps/x86_64-xenfull/sys/devices/system/cpu/cpu0/cache/index1/type deleted file mode 100644 index 9a53cbfa..00000000 --- a/tests/ts/lscpu/dumps/x86_64-xenfull/sys/devices/system/cpu/cpu0/cache/index1/type +++ /dev/null @@ -1 +0,0 @@ -Instruction diff --git a/tests/ts/lscpu/dumps/x86_64-xenfull/sys/devices/system/cpu/cpu0/cache/index2/level b/tests/ts/lscpu/dumps/x86_64-xenfull/sys/devices/system/cpu/cpu0/cache/index2/level deleted file mode 100644 index 0cfbf088..00000000 --- a/tests/ts/lscpu/dumps/x86_64-xenfull/sys/devices/system/cpu/cpu0/cache/index2/level +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/ts/lscpu/dumps/x86_64-xenfull/sys/devices/system/cpu/cpu0/cache/index2/shared_cpu_map b/tests/ts/lscpu/dumps/x86_64-xenfull/sys/devices/system/cpu/cpu0/cache/index2/shared_cpu_map deleted file mode 100644 index 6dcc80c7..00000000 --- a/tests/ts/lscpu/dumps/x86_64-xenfull/sys/devices/system/cpu/cpu0/cache/index2/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000001 diff --git a/tests/ts/lscpu/dumps/x86_64-xenfull/sys/devices/system/cpu/cpu0/cache/index2/size b/tests/ts/lscpu/dumps/x86_64-xenfull/sys/devices/system/cpu/cpu0/cache/index2/size deleted file mode 100644 index fd6858c5..00000000 --- a/tests/ts/lscpu/dumps/x86_64-xenfull/sys/devices/system/cpu/cpu0/cache/index2/size +++ /dev/null @@ -1 +0,0 @@ -6144K diff --git a/tests/ts/lscpu/dumps/x86_64-xenfull/sys/devices/system/cpu/cpu0/cache/index2/type b/tests/ts/lscpu/dumps/x86_64-xenfull/sys/devices/system/cpu/cpu0/cache/index2/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/x86_64-xenfull/sys/devices/system/cpu/cpu0/cache/index2/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/x86_64-xenfull/sys/devices/system/cpu/cpu0/topology/core_siblings b/tests/ts/lscpu/dumps/x86_64-xenfull/sys/devices/system/cpu/cpu0/topology/core_siblings deleted file mode 100644 index 6dcc80c7..00000000 --- a/tests/ts/lscpu/dumps/x86_64-xenfull/sys/devices/system/cpu/cpu0/topology/core_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000001 diff --git a/tests/ts/lscpu/dumps/x86_64-xenfull/sys/devices/system/cpu/cpu0/topology/thread_siblings b/tests/ts/lscpu/dumps/x86_64-xenfull/sys/devices/system/cpu/cpu0/topology/thread_siblings deleted file mode 100644 index 6dcc80c7..00000000 --- a/tests/ts/lscpu/dumps/x86_64-xenfull/sys/devices/system/cpu/cpu0/topology/thread_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000001 diff --git a/tests/ts/lscpu/dumps/x86_64-xenfull/sys/devices/system/node/node0/cpumap b/tests/ts/lscpu/dumps/x86_64-xenfull/sys/devices/system/node/node0/cpumap deleted file mode 100644 index 176d3d66..00000000 --- a/tests/ts/lscpu/dumps/x86_64-xenfull/sys/devices/system/node/node0/cpumap +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000003 -- cgit v1.2.3 From a4342354ffa5b9ff6067790fda39ad95ba411117 Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Wed, 27 May 2009 16:06:04 +0200 Subject: tests: move lscpu /proc and /sys dumps to tarballs It's easy to maintain few tarballs that tons of files. Signed-off-by: Karel Zak --- tests/ts/lscpu/dumps/i386-amdshanghai.tar.gz | Bin 0 -> 3395 bytes tests/ts/lscpu/dumps/i386-amdshanghai/proc/cpuinfo | 184 ---------- .../sys/devices/system/cpu/cpu0/cache/index0/level | 1 - .../system/cpu/cpu0/cache/index0/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu0/cache/index0/size | 1 - .../sys/devices/system/cpu/cpu0/cache/index0/type | 1 - .../sys/devices/system/cpu/cpu0/cache/index1/level | 1 - .../system/cpu/cpu0/cache/index1/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu0/cache/index1/size | 1 - .../sys/devices/system/cpu/cpu0/cache/index1/type | 1 - .../sys/devices/system/cpu/cpu0/cache/index2/level | 1 - .../system/cpu/cpu0/cache/index2/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu0/cache/index2/size | 1 - .../sys/devices/system/cpu/cpu0/cache/index2/type | 1 - .../sys/devices/system/cpu/cpu0/cache/index3/level | 1 - .../system/cpu/cpu0/cache/index3/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu0/cache/index3/size | 1 - .../sys/devices/system/cpu/cpu0/cache/index3/type | 1 - .../devices/system/cpu/cpu0/topology/core_siblings | 1 - .../system/cpu/cpu0/topology/thread_siblings | 1 - .../sys/devices/system/cpu/cpu1/cache/index0/level | 1 - .../system/cpu/cpu1/cache/index0/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu1/cache/index0/size | 1 - .../sys/devices/system/cpu/cpu1/cache/index0/type | 1 - .../sys/devices/system/cpu/cpu1/cache/index1/level | 1 - .../system/cpu/cpu1/cache/index1/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu1/cache/index1/size | 1 - .../sys/devices/system/cpu/cpu1/cache/index1/type | 1 - .../sys/devices/system/cpu/cpu1/cache/index2/level | 1 - .../system/cpu/cpu1/cache/index2/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu1/cache/index2/size | 1 - .../sys/devices/system/cpu/cpu1/cache/index2/type | 1 - .../sys/devices/system/cpu/cpu1/cache/index3/level | 1 - .../system/cpu/cpu1/cache/index3/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu1/cache/index3/size | 1 - .../sys/devices/system/cpu/cpu1/cache/index3/type | 1 - .../devices/system/cpu/cpu1/topology/core_siblings | 1 - .../system/cpu/cpu1/topology/thread_siblings | 1 - .../sys/devices/system/cpu/cpu2/cache/index0/level | 1 - .../system/cpu/cpu2/cache/index0/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu2/cache/index0/size | 1 - .../sys/devices/system/cpu/cpu2/cache/index0/type | 1 - .../sys/devices/system/cpu/cpu2/cache/index1/level | 1 - .../system/cpu/cpu2/cache/index1/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu2/cache/index1/size | 1 - .../sys/devices/system/cpu/cpu2/cache/index1/type | 1 - .../sys/devices/system/cpu/cpu2/cache/index2/level | 1 - .../system/cpu/cpu2/cache/index2/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu2/cache/index2/size | 1 - .../sys/devices/system/cpu/cpu2/cache/index2/type | 1 - .../sys/devices/system/cpu/cpu2/cache/index3/level | 1 - .../system/cpu/cpu2/cache/index3/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu2/cache/index3/size | 1 - .../sys/devices/system/cpu/cpu2/cache/index3/type | 1 - .../devices/system/cpu/cpu2/topology/core_siblings | 1 - .../system/cpu/cpu2/topology/thread_siblings | 1 - .../sys/devices/system/cpu/cpu3/cache/index0/level | 1 - .../system/cpu/cpu3/cache/index0/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu3/cache/index0/size | 1 - .../sys/devices/system/cpu/cpu3/cache/index0/type | 1 - .../sys/devices/system/cpu/cpu3/cache/index1/level | 1 - .../system/cpu/cpu3/cache/index1/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu3/cache/index1/size | 1 - .../sys/devices/system/cpu/cpu3/cache/index1/type | 1 - .../sys/devices/system/cpu/cpu3/cache/index2/level | 1 - .../system/cpu/cpu3/cache/index2/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu3/cache/index2/size | 1 - .../sys/devices/system/cpu/cpu3/cache/index2/type | 1 - .../sys/devices/system/cpu/cpu3/cache/index3/level | 1 - .../system/cpu/cpu3/cache/index3/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu3/cache/index3/size | 1 - .../sys/devices/system/cpu/cpu3/cache/index3/type | 1 - .../devices/system/cpu/cpu3/topology/core_siblings | 1 - .../system/cpu/cpu3/topology/thread_siblings | 1 - .../sys/devices/system/cpu/cpu4/cache/index0/level | 1 - .../system/cpu/cpu4/cache/index0/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu4/cache/index0/size | 1 - .../sys/devices/system/cpu/cpu4/cache/index0/type | 1 - .../sys/devices/system/cpu/cpu4/cache/index1/level | 1 - .../system/cpu/cpu4/cache/index1/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu4/cache/index1/size | 1 - .../sys/devices/system/cpu/cpu4/cache/index1/type | 1 - .../sys/devices/system/cpu/cpu4/cache/index2/level | 1 - .../system/cpu/cpu4/cache/index2/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu4/cache/index2/size | 1 - .../sys/devices/system/cpu/cpu4/cache/index2/type | 1 - .../sys/devices/system/cpu/cpu4/cache/index3/level | 1 - .../system/cpu/cpu4/cache/index3/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu4/cache/index3/size | 1 - .../sys/devices/system/cpu/cpu4/cache/index3/type | 1 - .../devices/system/cpu/cpu4/topology/core_siblings | 1 - .../system/cpu/cpu4/topology/thread_siblings | 1 - .../sys/devices/system/cpu/cpu5/cache/index0/level | 1 - .../system/cpu/cpu5/cache/index0/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu5/cache/index0/size | 1 - .../sys/devices/system/cpu/cpu5/cache/index0/type | 1 - .../sys/devices/system/cpu/cpu5/cache/index1/level | 1 - .../system/cpu/cpu5/cache/index1/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu5/cache/index1/size | 1 - .../sys/devices/system/cpu/cpu5/cache/index1/type | 1 - .../sys/devices/system/cpu/cpu5/cache/index2/level | 1 - .../system/cpu/cpu5/cache/index2/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu5/cache/index2/size | 1 - .../sys/devices/system/cpu/cpu5/cache/index2/type | 1 - .../sys/devices/system/cpu/cpu5/cache/index3/level | 1 - .../system/cpu/cpu5/cache/index3/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu5/cache/index3/size | 1 - .../sys/devices/system/cpu/cpu5/cache/index3/type | 1 - .../devices/system/cpu/cpu5/topology/core_siblings | 1 - .../system/cpu/cpu5/topology/thread_siblings | 1 - .../sys/devices/system/cpu/cpu6/cache/index0/level | 1 - .../system/cpu/cpu6/cache/index0/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu6/cache/index0/size | 1 - .../sys/devices/system/cpu/cpu6/cache/index0/type | 1 - .../sys/devices/system/cpu/cpu6/cache/index1/level | 1 - .../system/cpu/cpu6/cache/index1/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu6/cache/index1/size | 1 - .../sys/devices/system/cpu/cpu6/cache/index1/type | 1 - .../sys/devices/system/cpu/cpu6/cache/index2/level | 1 - .../system/cpu/cpu6/cache/index2/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu6/cache/index2/size | 1 - .../sys/devices/system/cpu/cpu6/cache/index2/type | 1 - .../sys/devices/system/cpu/cpu6/cache/index3/level | 1 - .../system/cpu/cpu6/cache/index3/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu6/cache/index3/size | 1 - .../sys/devices/system/cpu/cpu6/cache/index3/type | 1 - .../devices/system/cpu/cpu6/topology/core_siblings | 1 - .../system/cpu/cpu6/topology/thread_siblings | 1 - .../sys/devices/system/cpu/cpu7/cache/index0/level | 1 - .../system/cpu/cpu7/cache/index0/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu7/cache/index0/size | 1 - .../sys/devices/system/cpu/cpu7/cache/index0/type | 1 - .../sys/devices/system/cpu/cpu7/cache/index1/level | 1 - .../system/cpu/cpu7/cache/index1/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu7/cache/index1/size | 1 - .../sys/devices/system/cpu/cpu7/cache/index1/type | 1 - .../sys/devices/system/cpu/cpu7/cache/index2/level | 1 - .../system/cpu/cpu7/cache/index2/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu7/cache/index2/size | 1 - .../sys/devices/system/cpu/cpu7/cache/index2/type | 1 - .../sys/devices/system/cpu/cpu7/cache/index3/level | 1 - .../system/cpu/cpu7/cache/index3/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu7/cache/index3/size | 1 - .../sys/devices/system/cpu/cpu7/cache/index3/type | 1 - .../devices/system/cpu/cpu7/topology/core_siblings | 1 - .../system/cpu/cpu7/topology/thread_siblings | 1 - tests/ts/lscpu/dumps/i386-dellpe700.tar.gz | Bin 0 -> 799 bytes tests/ts/lscpu/dumps/i386-dellpe700/proc/cpuinfo | 46 --- .../devices/system/cpu/cpu0/thermal_throttle/count | 1 - .../devices/system/cpu/cpu0/topology/core_siblings | 1 - .../system/cpu/cpu0/topology/thread_siblings | 1 - .../devices/system/cpu/cpu1/thermal_throttle/count | 1 - .../devices/system/cpu/cpu1/topology/core_siblings | 1 - .../system/cpu/cpu1/topology/thread_siblings | 1 - tests/ts/lscpu/dumps/i386-intels5000phb.tar.gz | Bin 0 -> 2865 bytes .../ts/lscpu/dumps/i386-intels5000phb/proc/cpuinfo | 184 ---------- .../sys/devices/system/cpu/cpu0/cache/index0/level | 1 - .../system/cpu/cpu0/cache/index0/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu0/cache/index0/size | 1 - .../sys/devices/system/cpu/cpu0/cache/index0/type | 1 - .../sys/devices/system/cpu/cpu0/cache/index1/level | 1 - .../system/cpu/cpu0/cache/index1/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu0/cache/index1/size | 1 - .../sys/devices/system/cpu/cpu0/cache/index1/type | 1 - .../sys/devices/system/cpu/cpu0/cache/index2/level | 1 - .../system/cpu/cpu0/cache/index2/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu0/cache/index2/size | 1 - .../sys/devices/system/cpu/cpu0/cache/index2/type | 1 - .../devices/system/cpu/cpu0/topology/core_siblings | 1 - .../system/cpu/cpu0/topology/thread_siblings | 1 - .../sys/devices/system/cpu/cpu1/cache/index0/level | 1 - .../system/cpu/cpu1/cache/index0/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu1/cache/index0/size | 1 - .../sys/devices/system/cpu/cpu1/cache/index0/type | 1 - .../sys/devices/system/cpu/cpu1/cache/index1/level | 1 - .../system/cpu/cpu1/cache/index1/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu1/cache/index1/size | 1 - .../sys/devices/system/cpu/cpu1/cache/index1/type | 1 - .../sys/devices/system/cpu/cpu1/cache/index2/level | 1 - .../system/cpu/cpu1/cache/index2/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu1/cache/index2/size | 1 - .../sys/devices/system/cpu/cpu1/cache/index2/type | 1 - .../devices/system/cpu/cpu1/topology/core_siblings | 1 - .../system/cpu/cpu1/topology/thread_siblings | 1 - .../sys/devices/system/cpu/cpu2/cache/index0/level | 1 - .../system/cpu/cpu2/cache/index0/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu2/cache/index0/size | 1 - .../sys/devices/system/cpu/cpu2/cache/index0/type | 1 - .../sys/devices/system/cpu/cpu2/cache/index1/level | 1 - .../system/cpu/cpu2/cache/index1/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu2/cache/index1/size | 1 - .../sys/devices/system/cpu/cpu2/cache/index1/type | 1 - .../sys/devices/system/cpu/cpu2/cache/index2/level | 1 - .../system/cpu/cpu2/cache/index2/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu2/cache/index2/size | 1 - .../sys/devices/system/cpu/cpu2/cache/index2/type | 1 - .../devices/system/cpu/cpu2/topology/core_siblings | 1 - .../system/cpu/cpu2/topology/thread_siblings | 1 - .../sys/devices/system/cpu/cpu3/cache/index0/level | 1 - .../system/cpu/cpu3/cache/index0/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu3/cache/index0/size | 1 - .../sys/devices/system/cpu/cpu3/cache/index0/type | 1 - .../sys/devices/system/cpu/cpu3/cache/index1/level | 1 - .../system/cpu/cpu3/cache/index1/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu3/cache/index1/size | 1 - .../sys/devices/system/cpu/cpu3/cache/index1/type | 1 - .../sys/devices/system/cpu/cpu3/cache/index2/level | 1 - .../system/cpu/cpu3/cache/index2/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu3/cache/index2/size | 1 - .../sys/devices/system/cpu/cpu3/cache/index2/type | 1 - .../devices/system/cpu/cpu3/topology/core_siblings | 1 - .../system/cpu/cpu3/topology/thread_siblings | 1 - .../sys/devices/system/cpu/cpu4/cache/index0/level | 1 - .../system/cpu/cpu4/cache/index0/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu4/cache/index0/size | 1 - .../sys/devices/system/cpu/cpu4/cache/index0/type | 1 - .../sys/devices/system/cpu/cpu4/cache/index1/level | 1 - .../system/cpu/cpu4/cache/index1/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu4/cache/index1/size | 1 - .../sys/devices/system/cpu/cpu4/cache/index1/type | 1 - .../sys/devices/system/cpu/cpu4/cache/index2/level | 1 - .../system/cpu/cpu4/cache/index2/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu4/cache/index2/size | 1 - .../sys/devices/system/cpu/cpu4/cache/index2/type | 1 - .../devices/system/cpu/cpu4/topology/core_siblings | 1 - .../system/cpu/cpu4/topology/thread_siblings | 1 - .../sys/devices/system/cpu/cpu5/cache/index0/level | 1 - .../system/cpu/cpu5/cache/index0/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu5/cache/index0/size | 1 - .../sys/devices/system/cpu/cpu5/cache/index0/type | 1 - .../sys/devices/system/cpu/cpu5/cache/index1/level | 1 - .../system/cpu/cpu5/cache/index1/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu5/cache/index1/size | 1 - .../sys/devices/system/cpu/cpu5/cache/index1/type | 1 - .../sys/devices/system/cpu/cpu5/cache/index2/level | 1 - .../system/cpu/cpu5/cache/index2/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu5/cache/index2/size | 1 - .../sys/devices/system/cpu/cpu5/cache/index2/type | 1 - .../devices/system/cpu/cpu5/topology/core_siblings | 1 - .../system/cpu/cpu5/topology/thread_siblings | 1 - .../sys/devices/system/cpu/cpu6/cache/index0/level | 1 - .../system/cpu/cpu6/cache/index0/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu6/cache/index0/size | 1 - .../sys/devices/system/cpu/cpu6/cache/index0/type | 1 - .../sys/devices/system/cpu/cpu6/cache/index1/level | 1 - .../system/cpu/cpu6/cache/index1/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu6/cache/index1/size | 1 - .../sys/devices/system/cpu/cpu6/cache/index1/type | 1 - .../sys/devices/system/cpu/cpu6/cache/index2/level | 1 - .../system/cpu/cpu6/cache/index2/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu6/cache/index2/size | 1 - .../sys/devices/system/cpu/cpu6/cache/index2/type | 1 - .../devices/system/cpu/cpu6/topology/core_siblings | 1 - .../system/cpu/cpu6/topology/thread_siblings | 1 - .../sys/devices/system/cpu/cpu7/cache/index0/level | 1 - .../system/cpu/cpu7/cache/index0/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu7/cache/index0/size | 1 - .../sys/devices/system/cpu/cpu7/cache/index0/type | 1 - .../sys/devices/system/cpu/cpu7/cache/index1/level | 1 - .../system/cpu/cpu7/cache/index1/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu7/cache/index1/size | 1 - .../sys/devices/system/cpu/cpu7/cache/index1/type | 1 - .../sys/devices/system/cpu/cpu7/cache/index2/level | 1 - .../system/cpu/cpu7/cache/index2/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu7/cache/index2/size | 1 - .../sys/devices/system/cpu/cpu7/cache/index2/type | 1 - .../devices/system/cpu/cpu7/topology/core_siblings | 1 - .../system/cpu/cpu7/topology/thread_siblings | 1 - tests/ts/lscpu/dumps/ia64-hpmatterhorn.tar.gz | Bin 0 -> 3514 bytes .../ts/lscpu/dumps/ia64-hpmatterhorn/proc/cpuinfo | 120 ------- .../sys/devices/system/cpu/cpu0/cache/index0/level | 1 - .../system/cpu/cpu0/cache/index0/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu0/cache/index0/size | 1 - .../sys/devices/system/cpu/cpu0/cache/index0/type | 1 - .../sys/devices/system/cpu/cpu0/cache/index1/level | 1 - .../system/cpu/cpu0/cache/index1/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu0/cache/index1/size | 1 - .../sys/devices/system/cpu/cpu0/cache/index1/type | 1 - .../sys/devices/system/cpu/cpu0/cache/index2/level | 1 - .../system/cpu/cpu0/cache/index2/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu0/cache/index2/size | 1 - .../sys/devices/system/cpu/cpu0/cache/index2/type | 1 - .../sys/devices/system/cpu/cpu0/cache/index3/level | 1 - .../system/cpu/cpu0/cache/index3/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu0/cache/index3/size | 1 - .../sys/devices/system/cpu/cpu0/cache/index3/type | 1 - .../devices/system/cpu/cpu0/topology/core_siblings | 1 - .../system/cpu/cpu0/topology/thread_siblings | 1 - .../sys/devices/system/cpu/cpu1/cache/index0/level | 1 - .../system/cpu/cpu1/cache/index0/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu1/cache/index0/size | 1 - .../sys/devices/system/cpu/cpu1/cache/index0/type | 1 - .../sys/devices/system/cpu/cpu1/cache/index1/level | 1 - .../system/cpu/cpu1/cache/index1/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu1/cache/index1/size | 1 - .../sys/devices/system/cpu/cpu1/cache/index1/type | 1 - .../sys/devices/system/cpu/cpu1/cache/index2/level | 1 - .../system/cpu/cpu1/cache/index2/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu1/cache/index2/size | 1 - .../sys/devices/system/cpu/cpu1/cache/index2/type | 1 - .../sys/devices/system/cpu/cpu1/cache/index3/level | 1 - .../system/cpu/cpu1/cache/index3/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu1/cache/index3/size | 1 - .../sys/devices/system/cpu/cpu1/cache/index3/type | 1 - .../devices/system/cpu/cpu1/topology/core_siblings | 1 - .../system/cpu/cpu1/topology/thread_siblings | 1 - .../sys/devices/system/cpu/cpu2/cache/index0/level | 1 - .../system/cpu/cpu2/cache/index0/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu2/cache/index0/size | 1 - .../sys/devices/system/cpu/cpu2/cache/index0/type | 1 - .../sys/devices/system/cpu/cpu2/cache/index1/level | 1 - .../system/cpu/cpu2/cache/index1/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu2/cache/index1/size | 1 - .../sys/devices/system/cpu/cpu2/cache/index1/type | 1 - .../sys/devices/system/cpu/cpu2/cache/index2/level | 1 - .../system/cpu/cpu2/cache/index2/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu2/cache/index2/size | 1 - .../sys/devices/system/cpu/cpu2/cache/index2/type | 1 - .../sys/devices/system/cpu/cpu2/cache/index3/level | 1 - .../system/cpu/cpu2/cache/index3/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu2/cache/index3/size | 1 - .../sys/devices/system/cpu/cpu2/cache/index3/type | 1 - .../devices/system/cpu/cpu2/topology/core_siblings | 1 - .../system/cpu/cpu2/topology/thread_siblings | 1 - .../sys/devices/system/cpu/cpu3/cache/index0/level | 1 - .../system/cpu/cpu3/cache/index0/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu3/cache/index0/size | 1 - .../sys/devices/system/cpu/cpu3/cache/index0/type | 1 - .../sys/devices/system/cpu/cpu3/cache/index1/level | 1 - .../system/cpu/cpu3/cache/index1/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu3/cache/index1/size | 1 - .../sys/devices/system/cpu/cpu3/cache/index1/type | 1 - .../sys/devices/system/cpu/cpu3/cache/index2/level | 1 - .../system/cpu/cpu3/cache/index2/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu3/cache/index2/size | 1 - .../sys/devices/system/cpu/cpu3/cache/index2/type | 1 - .../sys/devices/system/cpu/cpu3/cache/index3/level | 1 - .../system/cpu/cpu3/cache/index3/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu3/cache/index3/size | 1 - .../sys/devices/system/cpu/cpu3/cache/index3/type | 1 - .../devices/system/cpu/cpu3/topology/core_siblings | 1 - .../system/cpu/cpu3/topology/thread_siblings | 1 - .../sys/devices/system/cpu/cpu4/cache/index0/level | 1 - .../system/cpu/cpu4/cache/index0/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu4/cache/index0/size | 1 - .../sys/devices/system/cpu/cpu4/cache/index0/type | 1 - .../sys/devices/system/cpu/cpu4/cache/index1/level | 1 - .../system/cpu/cpu4/cache/index1/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu4/cache/index1/size | 1 - .../sys/devices/system/cpu/cpu4/cache/index1/type | 1 - .../sys/devices/system/cpu/cpu4/cache/index2/level | 1 - .../system/cpu/cpu4/cache/index2/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu4/cache/index2/size | 1 - .../sys/devices/system/cpu/cpu4/cache/index2/type | 1 - .../sys/devices/system/cpu/cpu4/cache/index3/level | 1 - .../system/cpu/cpu4/cache/index3/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu4/cache/index3/size | 1 - .../sys/devices/system/cpu/cpu4/cache/index3/type | 1 - .../devices/system/cpu/cpu4/topology/core_siblings | 1 - .../system/cpu/cpu4/topology/thread_siblings | 1 - .../sys/devices/system/cpu/cpu5/cache/index0/level | 1 - .../system/cpu/cpu5/cache/index0/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu5/cache/index0/size | 1 - .../sys/devices/system/cpu/cpu5/cache/index0/type | 1 - .../sys/devices/system/cpu/cpu5/cache/index1/level | 1 - .../system/cpu/cpu5/cache/index1/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu5/cache/index1/size | 1 - .../sys/devices/system/cpu/cpu5/cache/index1/type | 1 - .../sys/devices/system/cpu/cpu5/cache/index2/level | 1 - .../system/cpu/cpu5/cache/index2/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu5/cache/index2/size | 1 - .../sys/devices/system/cpu/cpu5/cache/index2/type | 1 - .../sys/devices/system/cpu/cpu5/cache/index3/level | 1 - .../system/cpu/cpu5/cache/index3/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu5/cache/index3/size | 1 - .../sys/devices/system/cpu/cpu5/cache/index3/type | 1 - .../devices/system/cpu/cpu5/topology/core_siblings | 1 - .../system/cpu/cpu5/topology/thread_siblings | 1 - .../sys/devices/system/cpu/cpu6/cache/index0/level | 1 - .../system/cpu/cpu6/cache/index0/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu6/cache/index0/size | 1 - .../sys/devices/system/cpu/cpu6/cache/index0/type | 1 - .../sys/devices/system/cpu/cpu6/cache/index1/level | 1 - .../system/cpu/cpu6/cache/index1/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu6/cache/index1/size | 1 - .../sys/devices/system/cpu/cpu6/cache/index1/type | 1 - .../sys/devices/system/cpu/cpu6/cache/index2/level | 1 - .../system/cpu/cpu6/cache/index2/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu6/cache/index2/size | 1 - .../sys/devices/system/cpu/cpu6/cache/index2/type | 1 - .../sys/devices/system/cpu/cpu6/cache/index3/level | 1 - .../system/cpu/cpu6/cache/index3/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu6/cache/index3/size | 1 - .../sys/devices/system/cpu/cpu6/cache/index3/type | 1 - .../devices/system/cpu/cpu6/topology/core_siblings | 1 - .../system/cpu/cpu6/topology/thread_siblings | 1 - .../sys/devices/system/cpu/cpu7/cache/index0/level | 1 - .../system/cpu/cpu7/cache/index0/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu7/cache/index0/size | 1 - .../sys/devices/system/cpu/cpu7/cache/index0/type | 1 - .../sys/devices/system/cpu/cpu7/cache/index1/level | 1 - .../system/cpu/cpu7/cache/index1/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu7/cache/index1/size | 1 - .../sys/devices/system/cpu/cpu7/cache/index1/type | 1 - .../sys/devices/system/cpu/cpu7/cache/index2/level | 1 - .../system/cpu/cpu7/cache/index2/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu7/cache/index2/size | 1 - .../sys/devices/system/cpu/cpu7/cache/index2/type | 1 - .../sys/devices/system/cpu/cpu7/cache/index3/level | 1 - .../system/cpu/cpu7/cache/index3/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu7/cache/index3/size | 1 - .../sys/devices/system/cpu/cpu7/cache/index3/type | 1 - .../devices/system/cpu/cpu7/topology/core_siblings | 1 - .../system/cpu/cpu7/topology/thread_siblings | 1 - .../sys/devices/system/node/node0/cpu4 | 1 - .../sys/devices/system/node/node0/cpu5 | 1 - .../sys/devices/system/node/node0/cpu6 | 1 - .../sys/devices/system/node/node0/cpu7 | 1 - .../sys/devices/system/node/node0/cpumap | 1 - .../sys/devices/system/node/node1/cpu0 | 1 - .../sys/devices/system/node/node1/cpu1 | 1 - .../sys/devices/system/node/node1/cpu2 | 1 - .../sys/devices/system/node/node1/cpu3 | 1 - .../sys/devices/system/node/node1/cpumap | 1 - .../sys/devices/system/node/node2/cpumap | 1 - tests/ts/lscpu/dumps/ia64-hprx1620.tar.gz | Bin 0 -> 1384 bytes tests/ts/lscpu/dumps/ia64-hprx1620/proc/cpuinfo | 30 -- .../sys/devices/system/cpu/cpu0/cache/index0/level | 1 - .../system/cpu/cpu0/cache/index0/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu0/cache/index0/size | 1 - .../sys/devices/system/cpu/cpu0/cache/index0/type | 1 - .../sys/devices/system/cpu/cpu0/cache/index1/level | 1 - .../system/cpu/cpu0/cache/index1/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu0/cache/index1/size | 1 - .../sys/devices/system/cpu/cpu0/cache/index1/type | 1 - .../sys/devices/system/cpu/cpu0/cache/index2/level | 1 - .../system/cpu/cpu0/cache/index2/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu0/cache/index2/size | 1 - .../sys/devices/system/cpu/cpu0/cache/index2/type | 1 - .../sys/devices/system/cpu/cpu0/cache/index3/level | 1 - .../system/cpu/cpu0/cache/index3/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu0/cache/index3/size | 1 - .../sys/devices/system/cpu/cpu0/cache/index3/type | 1 - .../devices/system/cpu/cpu0/topology/core_siblings | 1 - .../system/cpu/cpu0/topology/thread_siblings | 1 - .../sys/devices/system/cpu/cpu1/cache/index0/level | 1 - .../system/cpu/cpu1/cache/index0/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu1/cache/index0/size | 1 - .../sys/devices/system/cpu/cpu1/cache/index0/type | 1 - .../sys/devices/system/cpu/cpu1/cache/index1/level | 1 - .../system/cpu/cpu1/cache/index1/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu1/cache/index1/size | 1 - .../sys/devices/system/cpu/cpu1/cache/index1/type | 1 - .../sys/devices/system/cpu/cpu1/cache/index2/level | 1 - .../system/cpu/cpu1/cache/index2/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu1/cache/index2/size | 1 - .../sys/devices/system/cpu/cpu1/cache/index2/type | 1 - .../sys/devices/system/cpu/cpu1/cache/index3/level | 1 - .../system/cpu/cpu1/cache/index3/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu1/cache/index3/size | 1 - .../sys/devices/system/cpu/cpu1/cache/index3/type | 1 - .../devices/system/cpu/cpu1/topology/core_siblings | 1 - .../system/cpu/cpu1/topology/thread_siblings | 1 - .../sys/devices/system/node/node0/cpu0 | 1 - .../sys/devices/system/node/node0/cpu1 | 1 - .../sys/devices/system/node/node0/cpumap | 1 - tests/ts/lscpu/dumps/ia64-pg0.tar.gz | Bin 0 -> 7784 bytes tests/ts/lscpu/dumps/ia64-pg0/proc/cpuinfo | 288 ---------------- .../sys/devices/system/cpu/cpu0/cache/index0/level | 1 - .../system/cpu/cpu0/cache/index0/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu0/cache/index0/size | 1 - .../sys/devices/system/cpu/cpu0/cache/index0/type | 1 - .../sys/devices/system/cpu/cpu0/cache/index1/level | 1 - .../system/cpu/cpu0/cache/index1/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu0/cache/index1/size | 1 - .../sys/devices/system/cpu/cpu0/cache/index1/type | 1 - .../sys/devices/system/cpu/cpu0/cache/index2/level | 1 - .../system/cpu/cpu0/cache/index2/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu0/cache/index2/size | 1 - .../sys/devices/system/cpu/cpu0/cache/index2/type | 1 - .../sys/devices/system/cpu/cpu0/cache/index3/level | 1 - .../system/cpu/cpu0/cache/index3/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu0/cache/index3/size | 1 - .../sys/devices/system/cpu/cpu0/cache/index3/type | 1 - .../sys/devices/system/cpu/cpu0/cache/index4/level | 1 - .../system/cpu/cpu0/cache/index4/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu0/cache/index4/size | 1 - .../sys/devices/system/cpu/cpu0/cache/index4/type | 1 - .../devices/system/cpu/cpu0/topology/core_siblings | 1 - .../system/cpu/cpu0/topology/thread_siblings | 1 - .../sys/devices/system/cpu/cpu1/cache/index0/level | 1 - .../system/cpu/cpu1/cache/index0/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu1/cache/index0/size | 1 - .../sys/devices/system/cpu/cpu1/cache/index0/type | 1 - .../sys/devices/system/cpu/cpu1/cache/index1/level | 1 - .../system/cpu/cpu1/cache/index1/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu1/cache/index1/size | 1 - .../sys/devices/system/cpu/cpu1/cache/index1/type | 1 - .../sys/devices/system/cpu/cpu1/cache/index2/level | 1 - .../system/cpu/cpu1/cache/index2/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu1/cache/index2/size | 1 - .../sys/devices/system/cpu/cpu1/cache/index2/type | 1 - .../sys/devices/system/cpu/cpu1/cache/index3/level | 1 - .../system/cpu/cpu1/cache/index3/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu1/cache/index3/size | 1 - .../sys/devices/system/cpu/cpu1/cache/index3/type | 1 - .../sys/devices/system/cpu/cpu1/cache/index4/level | 1 - .../system/cpu/cpu1/cache/index4/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu1/cache/index4/size | 1 - .../sys/devices/system/cpu/cpu1/cache/index4/type | 1 - .../devices/system/cpu/cpu1/topology/core_siblings | 1 - .../system/cpu/cpu1/topology/thread_siblings | 1 - .../devices/system/cpu/cpu10/cache/index0/level | 1 - .../system/cpu/cpu10/cache/index0/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu10/cache/index0/size | 1 - .../sys/devices/system/cpu/cpu10/cache/index0/type | 1 - .../devices/system/cpu/cpu10/cache/index1/level | 1 - .../system/cpu/cpu10/cache/index1/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu10/cache/index1/size | 1 - .../sys/devices/system/cpu/cpu10/cache/index1/type | 1 - .../devices/system/cpu/cpu10/cache/index2/level | 1 - .../system/cpu/cpu10/cache/index2/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu10/cache/index2/size | 1 - .../sys/devices/system/cpu/cpu10/cache/index2/type | 1 - .../devices/system/cpu/cpu10/cache/index3/level | 1 - .../system/cpu/cpu10/cache/index3/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu10/cache/index3/size | 1 - .../sys/devices/system/cpu/cpu10/cache/index3/type | 1 - .../devices/system/cpu/cpu10/cache/index4/level | 1 - .../system/cpu/cpu10/cache/index4/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu10/cache/index4/size | 1 - .../sys/devices/system/cpu/cpu10/cache/index4/type | 1 - .../system/cpu/cpu10/topology/core_siblings | 1 - .../system/cpu/cpu10/topology/thread_siblings | 1 - .../devices/system/cpu/cpu11/cache/index0/level | 1 - .../system/cpu/cpu11/cache/index0/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu11/cache/index0/size | 1 - .../sys/devices/system/cpu/cpu11/cache/index0/type | 1 - .../devices/system/cpu/cpu11/cache/index1/level | 1 - .../system/cpu/cpu11/cache/index1/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu11/cache/index1/size | 1 - .../sys/devices/system/cpu/cpu11/cache/index1/type | 1 - .../devices/system/cpu/cpu11/cache/index2/level | 1 - .../system/cpu/cpu11/cache/index2/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu11/cache/index2/size | 1 - .../sys/devices/system/cpu/cpu11/cache/index2/type | 1 - .../devices/system/cpu/cpu11/cache/index3/level | 1 - .../system/cpu/cpu11/cache/index3/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu11/cache/index3/size | 1 - .../sys/devices/system/cpu/cpu11/cache/index3/type | 1 - .../devices/system/cpu/cpu11/cache/index4/level | 1 - .../system/cpu/cpu11/cache/index4/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu11/cache/index4/size | 1 - .../sys/devices/system/cpu/cpu11/cache/index4/type | 1 - .../system/cpu/cpu11/topology/core_siblings | 1 - .../system/cpu/cpu11/topology/thread_siblings | 1 - .../devices/system/cpu/cpu12/cache/index0/level | 1 - .../system/cpu/cpu12/cache/index0/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu12/cache/index0/size | 1 - .../sys/devices/system/cpu/cpu12/cache/index0/type | 1 - .../devices/system/cpu/cpu12/cache/index1/level | 1 - .../system/cpu/cpu12/cache/index1/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu12/cache/index1/size | 1 - .../sys/devices/system/cpu/cpu12/cache/index1/type | 1 - .../devices/system/cpu/cpu12/cache/index2/level | 1 - .../system/cpu/cpu12/cache/index2/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu12/cache/index2/size | 1 - .../sys/devices/system/cpu/cpu12/cache/index2/type | 1 - .../devices/system/cpu/cpu12/cache/index3/level | 1 - .../system/cpu/cpu12/cache/index3/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu12/cache/index3/size | 1 - .../sys/devices/system/cpu/cpu12/cache/index3/type | 1 - .../devices/system/cpu/cpu12/cache/index4/level | 1 - .../system/cpu/cpu12/cache/index4/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu12/cache/index4/size | 1 - .../sys/devices/system/cpu/cpu12/cache/index4/type | 1 - .../system/cpu/cpu12/topology/core_siblings | 1 - .../system/cpu/cpu12/topology/thread_siblings | 1 - .../devices/system/cpu/cpu13/cache/index0/level | 1 - .../system/cpu/cpu13/cache/index0/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu13/cache/index0/size | 1 - .../sys/devices/system/cpu/cpu13/cache/index0/type | 1 - .../devices/system/cpu/cpu13/cache/index1/level | 1 - .../system/cpu/cpu13/cache/index1/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu13/cache/index1/size | 1 - .../sys/devices/system/cpu/cpu13/cache/index1/type | 1 - .../devices/system/cpu/cpu13/cache/index2/level | 1 - .../system/cpu/cpu13/cache/index2/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu13/cache/index2/size | 1 - .../sys/devices/system/cpu/cpu13/cache/index2/type | 1 - .../devices/system/cpu/cpu13/cache/index3/level | 1 - .../system/cpu/cpu13/cache/index3/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu13/cache/index3/size | 1 - .../sys/devices/system/cpu/cpu13/cache/index3/type | 1 - .../devices/system/cpu/cpu13/cache/index4/level | 1 - .../system/cpu/cpu13/cache/index4/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu13/cache/index4/size | 1 - .../sys/devices/system/cpu/cpu13/cache/index4/type | 1 - .../system/cpu/cpu13/topology/core_siblings | 1 - .../system/cpu/cpu13/topology/thread_siblings | 1 - .../devices/system/cpu/cpu14/cache/index0/level | 1 - .../system/cpu/cpu14/cache/index0/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu14/cache/index0/size | 1 - .../sys/devices/system/cpu/cpu14/cache/index0/type | 1 - .../devices/system/cpu/cpu14/cache/index1/level | 1 - .../system/cpu/cpu14/cache/index1/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu14/cache/index1/size | 1 - .../sys/devices/system/cpu/cpu14/cache/index1/type | 1 - .../devices/system/cpu/cpu14/cache/index2/level | 1 - .../system/cpu/cpu14/cache/index2/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu14/cache/index2/size | 1 - .../sys/devices/system/cpu/cpu14/cache/index2/type | 1 - .../devices/system/cpu/cpu14/cache/index3/level | 1 - .../system/cpu/cpu14/cache/index3/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu14/cache/index3/size | 1 - .../sys/devices/system/cpu/cpu14/cache/index3/type | 1 - .../devices/system/cpu/cpu14/cache/index4/level | 1 - .../system/cpu/cpu14/cache/index4/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu14/cache/index4/size | 1 - .../sys/devices/system/cpu/cpu14/cache/index4/type | 1 - .../system/cpu/cpu14/topology/core_siblings | 1 - .../system/cpu/cpu14/topology/thread_siblings | 1 - .../devices/system/cpu/cpu15/cache/index0/level | 1 - .../system/cpu/cpu15/cache/index0/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu15/cache/index0/size | 1 - .../sys/devices/system/cpu/cpu15/cache/index0/type | 1 - .../devices/system/cpu/cpu15/cache/index1/level | 1 - .../system/cpu/cpu15/cache/index1/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu15/cache/index1/size | 1 - .../sys/devices/system/cpu/cpu15/cache/index1/type | 1 - .../devices/system/cpu/cpu15/cache/index2/level | 1 - .../system/cpu/cpu15/cache/index2/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu15/cache/index2/size | 1 - .../sys/devices/system/cpu/cpu15/cache/index2/type | 1 - .../devices/system/cpu/cpu15/cache/index3/level | 1 - .../system/cpu/cpu15/cache/index3/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu15/cache/index3/size | 1 - .../sys/devices/system/cpu/cpu15/cache/index3/type | 1 - .../devices/system/cpu/cpu15/cache/index4/level | 1 - .../system/cpu/cpu15/cache/index4/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu15/cache/index4/size | 1 - .../sys/devices/system/cpu/cpu15/cache/index4/type | 1 - .../system/cpu/cpu15/topology/core_siblings | 1 - .../system/cpu/cpu15/topology/thread_siblings | 1 - .../sys/devices/system/cpu/cpu2/cache/index0/level | 1 - .../system/cpu/cpu2/cache/index0/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu2/cache/index0/size | 1 - .../sys/devices/system/cpu/cpu2/cache/index0/type | 1 - .../sys/devices/system/cpu/cpu2/cache/index1/level | 1 - .../system/cpu/cpu2/cache/index1/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu2/cache/index1/size | 1 - .../sys/devices/system/cpu/cpu2/cache/index1/type | 1 - .../sys/devices/system/cpu/cpu2/cache/index2/level | 1 - .../system/cpu/cpu2/cache/index2/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu2/cache/index2/size | 1 - .../sys/devices/system/cpu/cpu2/cache/index2/type | 1 - .../sys/devices/system/cpu/cpu2/cache/index3/level | 1 - .../system/cpu/cpu2/cache/index3/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu2/cache/index3/size | 1 - .../sys/devices/system/cpu/cpu2/cache/index3/type | 1 - .../sys/devices/system/cpu/cpu2/cache/index4/level | 1 - .../system/cpu/cpu2/cache/index4/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu2/cache/index4/size | 1 - .../sys/devices/system/cpu/cpu2/cache/index4/type | 1 - .../devices/system/cpu/cpu2/topology/core_siblings | 1 - .../system/cpu/cpu2/topology/thread_siblings | 1 - .../sys/devices/system/cpu/cpu3/cache/index0/level | 1 - .../system/cpu/cpu3/cache/index0/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu3/cache/index0/size | 1 - .../sys/devices/system/cpu/cpu3/cache/index0/type | 1 - .../sys/devices/system/cpu/cpu3/cache/index1/level | 1 - .../system/cpu/cpu3/cache/index1/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu3/cache/index1/size | 1 - .../sys/devices/system/cpu/cpu3/cache/index1/type | 1 - .../sys/devices/system/cpu/cpu3/cache/index2/level | 1 - .../system/cpu/cpu3/cache/index2/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu3/cache/index2/size | 1 - .../sys/devices/system/cpu/cpu3/cache/index2/type | 1 - .../sys/devices/system/cpu/cpu3/cache/index3/level | 1 - .../system/cpu/cpu3/cache/index3/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu3/cache/index3/size | 1 - .../sys/devices/system/cpu/cpu3/cache/index3/type | 1 - .../sys/devices/system/cpu/cpu3/cache/index4/level | 1 - .../system/cpu/cpu3/cache/index4/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu3/cache/index4/size | 1 - .../sys/devices/system/cpu/cpu3/cache/index4/type | 1 - .../devices/system/cpu/cpu3/topology/core_siblings | 1 - .../system/cpu/cpu3/topology/thread_siblings | 1 - .../sys/devices/system/cpu/cpu4/cache/index0/level | 1 - .../system/cpu/cpu4/cache/index0/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu4/cache/index0/size | 1 - .../sys/devices/system/cpu/cpu4/cache/index0/type | 1 - .../sys/devices/system/cpu/cpu4/cache/index1/level | 1 - .../system/cpu/cpu4/cache/index1/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu4/cache/index1/size | 1 - .../sys/devices/system/cpu/cpu4/cache/index1/type | 1 - .../sys/devices/system/cpu/cpu4/cache/index2/level | 1 - .../system/cpu/cpu4/cache/index2/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu4/cache/index2/size | 1 - .../sys/devices/system/cpu/cpu4/cache/index2/type | 1 - .../sys/devices/system/cpu/cpu4/cache/index3/level | 1 - .../system/cpu/cpu4/cache/index3/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu4/cache/index3/size | 1 - .../sys/devices/system/cpu/cpu4/cache/index3/type | 1 - .../sys/devices/system/cpu/cpu4/cache/index4/level | 1 - .../system/cpu/cpu4/cache/index4/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu4/cache/index4/size | 1 - .../sys/devices/system/cpu/cpu4/cache/index4/type | 1 - .../devices/system/cpu/cpu4/topology/core_siblings | 1 - .../system/cpu/cpu4/topology/thread_siblings | 1 - .../sys/devices/system/cpu/cpu5/cache/index0/level | 1 - .../system/cpu/cpu5/cache/index0/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu5/cache/index0/size | 1 - .../sys/devices/system/cpu/cpu5/cache/index0/type | 1 - .../sys/devices/system/cpu/cpu5/cache/index1/level | 1 - .../system/cpu/cpu5/cache/index1/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu5/cache/index1/size | 1 - .../sys/devices/system/cpu/cpu5/cache/index1/type | 1 - .../sys/devices/system/cpu/cpu5/cache/index2/level | 1 - .../system/cpu/cpu5/cache/index2/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu5/cache/index2/size | 1 - .../sys/devices/system/cpu/cpu5/cache/index2/type | 1 - .../sys/devices/system/cpu/cpu5/cache/index3/level | 1 - .../system/cpu/cpu5/cache/index3/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu5/cache/index3/size | 1 - .../sys/devices/system/cpu/cpu5/cache/index3/type | 1 - .../sys/devices/system/cpu/cpu5/cache/index4/level | 1 - .../system/cpu/cpu5/cache/index4/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu5/cache/index4/size | 1 - .../sys/devices/system/cpu/cpu5/cache/index4/type | 1 - .../devices/system/cpu/cpu5/topology/core_siblings | 1 - .../system/cpu/cpu5/topology/thread_siblings | 1 - .../sys/devices/system/cpu/cpu6/cache/index0/level | 1 - .../system/cpu/cpu6/cache/index0/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu6/cache/index0/size | 1 - .../sys/devices/system/cpu/cpu6/cache/index0/type | 1 - .../sys/devices/system/cpu/cpu6/cache/index1/level | 1 - .../system/cpu/cpu6/cache/index1/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu6/cache/index1/size | 1 - .../sys/devices/system/cpu/cpu6/cache/index1/type | 1 - .../sys/devices/system/cpu/cpu6/cache/index2/level | 1 - .../system/cpu/cpu6/cache/index2/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu6/cache/index2/size | 1 - .../sys/devices/system/cpu/cpu6/cache/index2/type | 1 - .../sys/devices/system/cpu/cpu6/cache/index3/level | 1 - .../system/cpu/cpu6/cache/index3/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu6/cache/index3/size | 1 - .../sys/devices/system/cpu/cpu6/cache/index3/type | 1 - .../sys/devices/system/cpu/cpu6/cache/index4/level | 1 - .../system/cpu/cpu6/cache/index4/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu6/cache/index4/size | 1 - .../sys/devices/system/cpu/cpu6/cache/index4/type | 1 - .../devices/system/cpu/cpu6/topology/core_siblings | 1 - .../system/cpu/cpu6/topology/thread_siblings | 1 - .../sys/devices/system/cpu/cpu7/cache/index0/level | 1 - .../system/cpu/cpu7/cache/index0/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu7/cache/index0/size | 1 - .../sys/devices/system/cpu/cpu7/cache/index0/type | 1 - .../sys/devices/system/cpu/cpu7/cache/index1/level | 1 - .../system/cpu/cpu7/cache/index1/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu7/cache/index1/size | 1 - .../sys/devices/system/cpu/cpu7/cache/index1/type | 1 - .../sys/devices/system/cpu/cpu7/cache/index2/level | 1 - .../system/cpu/cpu7/cache/index2/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu7/cache/index2/size | 1 - .../sys/devices/system/cpu/cpu7/cache/index2/type | 1 - .../sys/devices/system/cpu/cpu7/cache/index3/level | 1 - .../system/cpu/cpu7/cache/index3/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu7/cache/index3/size | 1 - .../sys/devices/system/cpu/cpu7/cache/index3/type | 1 - .../sys/devices/system/cpu/cpu7/cache/index4/level | 1 - .../system/cpu/cpu7/cache/index4/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu7/cache/index4/size | 1 - .../sys/devices/system/cpu/cpu7/cache/index4/type | 1 - .../devices/system/cpu/cpu7/topology/core_siblings | 1 - .../system/cpu/cpu7/topology/thread_siblings | 1 - .../sys/devices/system/cpu/cpu8/cache/index0/level | 1 - .../system/cpu/cpu8/cache/index0/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu8/cache/index0/size | 1 - .../sys/devices/system/cpu/cpu8/cache/index0/type | 1 - .../sys/devices/system/cpu/cpu8/cache/index1/level | 1 - .../system/cpu/cpu8/cache/index1/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu8/cache/index1/size | 1 - .../sys/devices/system/cpu/cpu8/cache/index1/type | 1 - .../sys/devices/system/cpu/cpu8/cache/index2/level | 1 - .../system/cpu/cpu8/cache/index2/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu8/cache/index2/size | 1 - .../sys/devices/system/cpu/cpu8/cache/index2/type | 1 - .../sys/devices/system/cpu/cpu8/cache/index3/level | 1 - .../system/cpu/cpu8/cache/index3/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu8/cache/index3/size | 1 - .../sys/devices/system/cpu/cpu8/cache/index3/type | 1 - .../sys/devices/system/cpu/cpu8/cache/index4/level | 1 - .../system/cpu/cpu8/cache/index4/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu8/cache/index4/size | 1 - .../sys/devices/system/cpu/cpu8/cache/index4/type | 1 - .../devices/system/cpu/cpu8/topology/core_siblings | 1 - .../system/cpu/cpu8/topology/thread_siblings | 1 - .../sys/devices/system/cpu/cpu9/cache/index0/level | 1 - .../system/cpu/cpu9/cache/index0/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu9/cache/index0/size | 1 - .../sys/devices/system/cpu/cpu9/cache/index0/type | 1 - .../sys/devices/system/cpu/cpu9/cache/index1/level | 1 - .../system/cpu/cpu9/cache/index1/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu9/cache/index1/size | 1 - .../sys/devices/system/cpu/cpu9/cache/index1/type | 1 - .../sys/devices/system/cpu/cpu9/cache/index2/level | 1 - .../system/cpu/cpu9/cache/index2/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu9/cache/index2/size | 1 - .../sys/devices/system/cpu/cpu9/cache/index2/type | 1 - .../sys/devices/system/cpu/cpu9/cache/index3/level | 1 - .../system/cpu/cpu9/cache/index3/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu9/cache/index3/size | 1 - .../sys/devices/system/cpu/cpu9/cache/index3/type | 1 - .../sys/devices/system/cpu/cpu9/cache/index4/level | 1 - .../system/cpu/cpu9/cache/index4/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu9/cache/index4/size | 1 - .../sys/devices/system/cpu/cpu9/cache/index4/type | 1 - .../devices/system/cpu/cpu9/topology/core_siblings | 1 - .../system/cpu/cpu9/topology/thread_siblings | 1 - .../ia64-pg0/sys/devices/system/node/node0/cpu0 | 1 - .../ia64-pg0/sys/devices/system/node/node0/cpu1 | 1 - .../ia64-pg0/sys/devices/system/node/node0/cpu2 | 1 - .../ia64-pg0/sys/devices/system/node/node0/cpu3 | 1 - .../ia64-pg0/sys/devices/system/node/node0/cpu4 | 1 - .../ia64-pg0/sys/devices/system/node/node0/cpu5 | 1 - .../ia64-pg0/sys/devices/system/node/node0/cpu6 | 1 - .../ia64-pg0/sys/devices/system/node/node0/cpu7 | 1 - .../ia64-pg0/sys/devices/system/node/node0/cpumap | 1 - .../ia64-pg0/sys/devices/system/node/node1/cpu10 | 1 - .../ia64-pg0/sys/devices/system/node/node1/cpu11 | 1 - .../ia64-pg0/sys/devices/system/node/node1/cpu12 | 1 - .../ia64-pg0/sys/devices/system/node/node1/cpu13 | 1 - .../ia64-pg0/sys/devices/system/node/node1/cpu14 | 1 - .../ia64-pg0/sys/devices/system/node/node1/cpu15 | 1 - .../ia64-pg0/sys/devices/system/node/node1/cpu8 | 1 - .../ia64-pg0/sys/devices/system/node/node1/cpu9 | 1 - .../ia64-pg0/sys/devices/system/node/node1/cpumap | 1 - tests/ts/lscpu/dumps/x86_64-hpdl585.tar.gz | Bin 0 -> 6910 bytes tests/ts/lscpu/dumps/x86_64-hpdl585/proc/cpuinfo | 384 --------------------- .../sys/devices/system/cpu/cpu0/cache/index0/level | 1 - .../system/cpu/cpu0/cache/index0/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu0/cache/index0/size | 1 - .../sys/devices/system/cpu/cpu0/cache/index0/type | 1 - .../sys/devices/system/cpu/cpu0/cache/index1/level | 1 - .../system/cpu/cpu0/cache/index1/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu0/cache/index1/size | 1 - .../sys/devices/system/cpu/cpu0/cache/index1/type | 1 - .../sys/devices/system/cpu/cpu0/cache/index2/level | 1 - .../system/cpu/cpu0/cache/index2/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu0/cache/index2/size | 1 - .../sys/devices/system/cpu/cpu0/cache/index2/type | 1 - .../sys/devices/system/cpu/cpu0/cache/index3/level | 1 - .../system/cpu/cpu0/cache/index3/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu0/cache/index3/size | 1 - .../sys/devices/system/cpu/cpu0/cache/index3/type | 1 - .../devices/system/cpu/cpu0/topology/core_siblings | 1 - .../system/cpu/cpu0/topology/thread_siblings | 1 - .../sys/devices/system/cpu/cpu1/cache/index0/level | 1 - .../system/cpu/cpu1/cache/index0/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu1/cache/index0/size | 1 - .../sys/devices/system/cpu/cpu1/cache/index0/type | 1 - .../sys/devices/system/cpu/cpu1/cache/index1/level | 1 - .../system/cpu/cpu1/cache/index1/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu1/cache/index1/size | 1 - .../sys/devices/system/cpu/cpu1/cache/index1/type | 1 - .../sys/devices/system/cpu/cpu1/cache/index2/level | 1 - .../system/cpu/cpu1/cache/index2/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu1/cache/index2/size | 1 - .../sys/devices/system/cpu/cpu1/cache/index2/type | 1 - .../sys/devices/system/cpu/cpu1/cache/index3/level | 1 - .../system/cpu/cpu1/cache/index3/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu1/cache/index3/size | 1 - .../sys/devices/system/cpu/cpu1/cache/index3/type | 1 - .../devices/system/cpu/cpu1/topology/core_siblings | 1 - .../system/cpu/cpu1/topology/thread_siblings | 1 - .../devices/system/cpu/cpu10/cache/index0/level | 1 - .../system/cpu/cpu10/cache/index0/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu10/cache/index0/size | 1 - .../sys/devices/system/cpu/cpu10/cache/index0/type | 1 - .../devices/system/cpu/cpu10/cache/index1/level | 1 - .../system/cpu/cpu10/cache/index1/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu10/cache/index1/size | 1 - .../sys/devices/system/cpu/cpu10/cache/index1/type | 1 - .../devices/system/cpu/cpu10/cache/index2/level | 1 - .../system/cpu/cpu10/cache/index2/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu10/cache/index2/size | 1 - .../sys/devices/system/cpu/cpu10/cache/index2/type | 1 - .../devices/system/cpu/cpu10/cache/index3/level | 1 - .../system/cpu/cpu10/cache/index3/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu10/cache/index3/size | 1 - .../sys/devices/system/cpu/cpu10/cache/index3/type | 1 - .../system/cpu/cpu10/topology/core_siblings | 1 - .../system/cpu/cpu10/topology/thread_siblings | 1 - .../devices/system/cpu/cpu11/cache/index0/level | 1 - .../system/cpu/cpu11/cache/index0/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu11/cache/index0/size | 1 - .../sys/devices/system/cpu/cpu11/cache/index0/type | 1 - .../devices/system/cpu/cpu11/cache/index1/level | 1 - .../system/cpu/cpu11/cache/index1/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu11/cache/index1/size | 1 - .../sys/devices/system/cpu/cpu11/cache/index1/type | 1 - .../devices/system/cpu/cpu11/cache/index2/level | 1 - .../system/cpu/cpu11/cache/index2/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu11/cache/index2/size | 1 - .../sys/devices/system/cpu/cpu11/cache/index2/type | 1 - .../devices/system/cpu/cpu11/cache/index3/level | 1 - .../system/cpu/cpu11/cache/index3/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu11/cache/index3/size | 1 - .../sys/devices/system/cpu/cpu11/cache/index3/type | 1 - .../system/cpu/cpu11/topology/core_siblings | 1 - .../system/cpu/cpu11/topology/thread_siblings | 1 - .../devices/system/cpu/cpu12/cache/index0/level | 1 - .../system/cpu/cpu12/cache/index0/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu12/cache/index0/size | 1 - .../sys/devices/system/cpu/cpu12/cache/index0/type | 1 - .../devices/system/cpu/cpu12/cache/index1/level | 1 - .../system/cpu/cpu12/cache/index1/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu12/cache/index1/size | 1 - .../sys/devices/system/cpu/cpu12/cache/index1/type | 1 - .../devices/system/cpu/cpu12/cache/index2/level | 1 - .../system/cpu/cpu12/cache/index2/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu12/cache/index2/size | 1 - .../sys/devices/system/cpu/cpu12/cache/index2/type | 1 - .../devices/system/cpu/cpu12/cache/index3/level | 1 - .../system/cpu/cpu12/cache/index3/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu12/cache/index3/size | 1 - .../sys/devices/system/cpu/cpu12/cache/index3/type | 1 - .../system/cpu/cpu12/topology/core_siblings | 1 - .../system/cpu/cpu12/topology/thread_siblings | 1 - .../devices/system/cpu/cpu13/cache/index0/level | 1 - .../system/cpu/cpu13/cache/index0/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu13/cache/index0/size | 1 - .../sys/devices/system/cpu/cpu13/cache/index0/type | 1 - .../devices/system/cpu/cpu13/cache/index1/level | 1 - .../system/cpu/cpu13/cache/index1/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu13/cache/index1/size | 1 - .../sys/devices/system/cpu/cpu13/cache/index1/type | 1 - .../devices/system/cpu/cpu13/cache/index2/level | 1 - .../system/cpu/cpu13/cache/index2/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu13/cache/index2/size | 1 - .../sys/devices/system/cpu/cpu13/cache/index2/type | 1 - .../devices/system/cpu/cpu13/cache/index3/level | 1 - .../system/cpu/cpu13/cache/index3/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu13/cache/index3/size | 1 - .../sys/devices/system/cpu/cpu13/cache/index3/type | 1 - .../system/cpu/cpu13/topology/core_siblings | 1 - .../system/cpu/cpu13/topology/thread_siblings | 1 - .../devices/system/cpu/cpu14/cache/index0/level | 1 - .../system/cpu/cpu14/cache/index0/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu14/cache/index0/size | 1 - .../sys/devices/system/cpu/cpu14/cache/index0/type | 1 - .../devices/system/cpu/cpu14/cache/index1/level | 1 - .../system/cpu/cpu14/cache/index1/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu14/cache/index1/size | 1 - .../sys/devices/system/cpu/cpu14/cache/index1/type | 1 - .../devices/system/cpu/cpu14/cache/index2/level | 1 - .../system/cpu/cpu14/cache/index2/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu14/cache/index2/size | 1 - .../sys/devices/system/cpu/cpu14/cache/index2/type | 1 - .../devices/system/cpu/cpu14/cache/index3/level | 1 - .../system/cpu/cpu14/cache/index3/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu14/cache/index3/size | 1 - .../sys/devices/system/cpu/cpu14/cache/index3/type | 1 - .../system/cpu/cpu14/topology/core_siblings | 1 - .../system/cpu/cpu14/topology/thread_siblings | 1 - .../devices/system/cpu/cpu15/cache/index0/level | 1 - .../system/cpu/cpu15/cache/index0/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu15/cache/index0/size | 1 - .../sys/devices/system/cpu/cpu15/cache/index0/type | 1 - .../devices/system/cpu/cpu15/cache/index1/level | 1 - .../system/cpu/cpu15/cache/index1/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu15/cache/index1/size | 1 - .../sys/devices/system/cpu/cpu15/cache/index1/type | 1 - .../devices/system/cpu/cpu15/cache/index2/level | 1 - .../system/cpu/cpu15/cache/index2/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu15/cache/index2/size | 1 - .../sys/devices/system/cpu/cpu15/cache/index2/type | 1 - .../devices/system/cpu/cpu15/cache/index3/level | 1 - .../system/cpu/cpu15/cache/index3/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu15/cache/index3/size | 1 - .../sys/devices/system/cpu/cpu15/cache/index3/type | 1 - .../system/cpu/cpu15/topology/core_siblings | 1 - .../system/cpu/cpu15/topology/thread_siblings | 1 - .../sys/devices/system/cpu/cpu2/cache/index0/level | 1 - .../system/cpu/cpu2/cache/index0/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu2/cache/index0/size | 1 - .../sys/devices/system/cpu/cpu2/cache/index0/type | 1 - .../sys/devices/system/cpu/cpu2/cache/index1/level | 1 - .../system/cpu/cpu2/cache/index1/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu2/cache/index1/size | 1 - .../sys/devices/system/cpu/cpu2/cache/index1/type | 1 - .../sys/devices/system/cpu/cpu2/cache/index2/level | 1 - .../system/cpu/cpu2/cache/index2/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu2/cache/index2/size | 1 - .../sys/devices/system/cpu/cpu2/cache/index2/type | 1 - .../sys/devices/system/cpu/cpu2/cache/index3/level | 1 - .../system/cpu/cpu2/cache/index3/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu2/cache/index3/size | 1 - .../sys/devices/system/cpu/cpu2/cache/index3/type | 1 - .../devices/system/cpu/cpu2/topology/core_siblings | 1 - .../system/cpu/cpu2/topology/thread_siblings | 1 - .../sys/devices/system/cpu/cpu3/cache/index0/level | 1 - .../system/cpu/cpu3/cache/index0/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu3/cache/index0/size | 1 - .../sys/devices/system/cpu/cpu3/cache/index0/type | 1 - .../sys/devices/system/cpu/cpu3/cache/index1/level | 1 - .../system/cpu/cpu3/cache/index1/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu3/cache/index1/size | 1 - .../sys/devices/system/cpu/cpu3/cache/index1/type | 1 - .../sys/devices/system/cpu/cpu3/cache/index2/level | 1 - .../system/cpu/cpu3/cache/index2/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu3/cache/index2/size | 1 - .../sys/devices/system/cpu/cpu3/cache/index2/type | 1 - .../sys/devices/system/cpu/cpu3/cache/index3/level | 1 - .../system/cpu/cpu3/cache/index3/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu3/cache/index3/size | 1 - .../sys/devices/system/cpu/cpu3/cache/index3/type | 1 - .../devices/system/cpu/cpu3/topology/core_siblings | 1 - .../system/cpu/cpu3/topology/thread_siblings | 1 - .../sys/devices/system/cpu/cpu4/cache/index0/level | 1 - .../system/cpu/cpu4/cache/index0/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu4/cache/index0/size | 1 - .../sys/devices/system/cpu/cpu4/cache/index0/type | 1 - .../sys/devices/system/cpu/cpu4/cache/index1/level | 1 - .../system/cpu/cpu4/cache/index1/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu4/cache/index1/size | 1 - .../sys/devices/system/cpu/cpu4/cache/index1/type | 1 - .../sys/devices/system/cpu/cpu4/cache/index2/level | 1 - .../system/cpu/cpu4/cache/index2/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu4/cache/index2/size | 1 - .../sys/devices/system/cpu/cpu4/cache/index2/type | 1 - .../sys/devices/system/cpu/cpu4/cache/index3/level | 1 - .../system/cpu/cpu4/cache/index3/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu4/cache/index3/size | 1 - .../sys/devices/system/cpu/cpu4/cache/index3/type | 1 - .../devices/system/cpu/cpu4/topology/core_siblings | 1 - .../system/cpu/cpu4/topology/thread_siblings | 1 - .../sys/devices/system/cpu/cpu5/cache/index0/level | 1 - .../system/cpu/cpu5/cache/index0/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu5/cache/index0/size | 1 - .../sys/devices/system/cpu/cpu5/cache/index0/type | 1 - .../sys/devices/system/cpu/cpu5/cache/index1/level | 1 - .../system/cpu/cpu5/cache/index1/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu5/cache/index1/size | 1 - .../sys/devices/system/cpu/cpu5/cache/index1/type | 1 - .../sys/devices/system/cpu/cpu5/cache/index2/level | 1 - .../system/cpu/cpu5/cache/index2/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu5/cache/index2/size | 1 - .../sys/devices/system/cpu/cpu5/cache/index2/type | 1 - .../sys/devices/system/cpu/cpu5/cache/index3/level | 1 - .../system/cpu/cpu5/cache/index3/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu5/cache/index3/size | 1 - .../sys/devices/system/cpu/cpu5/cache/index3/type | 1 - .../devices/system/cpu/cpu5/topology/core_siblings | 1 - .../system/cpu/cpu5/topology/thread_siblings | 1 - .../sys/devices/system/cpu/cpu6/cache/index0/level | 1 - .../system/cpu/cpu6/cache/index0/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu6/cache/index0/size | 1 - .../sys/devices/system/cpu/cpu6/cache/index0/type | 1 - .../sys/devices/system/cpu/cpu6/cache/index1/level | 1 - .../system/cpu/cpu6/cache/index1/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu6/cache/index1/size | 1 - .../sys/devices/system/cpu/cpu6/cache/index1/type | 1 - .../sys/devices/system/cpu/cpu6/cache/index2/level | 1 - .../system/cpu/cpu6/cache/index2/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu6/cache/index2/size | 1 - .../sys/devices/system/cpu/cpu6/cache/index2/type | 1 - .../sys/devices/system/cpu/cpu6/cache/index3/level | 1 - .../system/cpu/cpu6/cache/index3/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu6/cache/index3/size | 1 - .../sys/devices/system/cpu/cpu6/cache/index3/type | 1 - .../devices/system/cpu/cpu6/topology/core_siblings | 1 - .../system/cpu/cpu6/topology/thread_siblings | 1 - .../sys/devices/system/cpu/cpu7/cache/index0/level | 1 - .../system/cpu/cpu7/cache/index0/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu7/cache/index0/size | 1 - .../sys/devices/system/cpu/cpu7/cache/index0/type | 1 - .../sys/devices/system/cpu/cpu7/cache/index1/level | 1 - .../system/cpu/cpu7/cache/index1/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu7/cache/index1/size | 1 - .../sys/devices/system/cpu/cpu7/cache/index1/type | 1 - .../sys/devices/system/cpu/cpu7/cache/index2/level | 1 - .../system/cpu/cpu7/cache/index2/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu7/cache/index2/size | 1 - .../sys/devices/system/cpu/cpu7/cache/index2/type | 1 - .../sys/devices/system/cpu/cpu7/cache/index3/level | 1 - .../system/cpu/cpu7/cache/index3/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu7/cache/index3/size | 1 - .../sys/devices/system/cpu/cpu7/cache/index3/type | 1 - .../devices/system/cpu/cpu7/topology/core_siblings | 1 - .../system/cpu/cpu7/topology/thread_siblings | 1 - .../sys/devices/system/cpu/cpu8/cache/index0/level | 1 - .../system/cpu/cpu8/cache/index0/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu8/cache/index0/size | 1 - .../sys/devices/system/cpu/cpu8/cache/index0/type | 1 - .../sys/devices/system/cpu/cpu8/cache/index1/level | 1 - .../system/cpu/cpu8/cache/index1/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu8/cache/index1/size | 1 - .../sys/devices/system/cpu/cpu8/cache/index1/type | 1 - .../sys/devices/system/cpu/cpu8/cache/index2/level | 1 - .../system/cpu/cpu8/cache/index2/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu8/cache/index2/size | 1 - .../sys/devices/system/cpu/cpu8/cache/index2/type | 1 - .../sys/devices/system/cpu/cpu8/cache/index3/level | 1 - .../system/cpu/cpu8/cache/index3/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu8/cache/index3/size | 1 - .../sys/devices/system/cpu/cpu8/cache/index3/type | 1 - .../devices/system/cpu/cpu8/topology/core_siblings | 1 - .../system/cpu/cpu8/topology/thread_siblings | 1 - .../sys/devices/system/cpu/cpu9/cache/index0/level | 1 - .../system/cpu/cpu9/cache/index0/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu9/cache/index0/size | 1 - .../sys/devices/system/cpu/cpu9/cache/index0/type | 1 - .../sys/devices/system/cpu/cpu9/cache/index1/level | 1 - .../system/cpu/cpu9/cache/index1/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu9/cache/index1/size | 1 - .../sys/devices/system/cpu/cpu9/cache/index1/type | 1 - .../sys/devices/system/cpu/cpu9/cache/index2/level | 1 - .../system/cpu/cpu9/cache/index2/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu9/cache/index2/size | 1 - .../sys/devices/system/cpu/cpu9/cache/index2/type | 1 - .../sys/devices/system/cpu/cpu9/cache/index3/level | 1 - .../system/cpu/cpu9/cache/index3/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu9/cache/index3/size | 1 - .../sys/devices/system/cpu/cpu9/cache/index3/type | 1 - .../devices/system/cpu/cpu9/topology/core_siblings | 1 - .../system/cpu/cpu9/topology/thread_siblings | 1 - .../sys/devices/system/node/node0/cpu0 | 1 - .../sys/devices/system/node/node0/cpu12 | 1 - .../sys/devices/system/node/node0/cpu4 | 1 - .../sys/devices/system/node/node0/cpu8 | 1 - .../sys/devices/system/node/node0/cpumap | 1 - .../sys/devices/system/node/node1/cpu1 | 1 - .../sys/devices/system/node/node1/cpu13 | 1 - .../sys/devices/system/node/node1/cpu5 | 1 - .../sys/devices/system/node/node1/cpu9 | 1 - .../sys/devices/system/node/node1/cpumap | 1 - .../sys/devices/system/node/node2/cpu10 | 1 - .../sys/devices/system/node/node2/cpu14 | 1 - .../sys/devices/system/node/node2/cpu2 | 1 - .../sys/devices/system/node/node2/cpu6 | 1 - .../sys/devices/system/node/node2/cpumap | 1 - .../sys/devices/system/node/node3/cpu11 | 1 - .../sys/devices/system/node/node3/cpu15 | 1 - .../sys/devices/system/node/node3/cpu3 | 1 - .../sys/devices/system/node/node3/cpu7 | 1 - .../sys/devices/system/node/node3/cpumap | 1 - tests/ts/lscpu/dumps/x86_64-ibme326m.tar.gz | Bin 0 -> 1461 bytes tests/ts/lscpu/dumps/x86_64-ibme326m/proc/cpuinfo | 48 --- .../sys/devices/system/cpu/cpu0/cache/index0/level | 1 - .../system/cpu/cpu0/cache/index0/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu0/cache/index0/size | 1 - .../sys/devices/system/cpu/cpu0/cache/index0/type | 1 - .../sys/devices/system/cpu/cpu0/cache/index1/level | 1 - .../system/cpu/cpu0/cache/index1/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu0/cache/index1/size | 1 - .../sys/devices/system/cpu/cpu0/cache/index1/type | 1 - .../sys/devices/system/cpu/cpu0/cache/index2/level | 1 - .../system/cpu/cpu0/cache/index2/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu0/cache/index2/size | 1 - .../sys/devices/system/cpu/cpu0/cache/index2/type | 1 - .../devices/system/cpu/cpu0/topology/core_siblings | 1 - .../system/cpu/cpu0/topology/thread_siblings | 1 - .../sys/devices/system/cpu/cpu1/cache/index0/level | 1 - .../system/cpu/cpu1/cache/index0/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu1/cache/index0/size | 1 - .../sys/devices/system/cpu/cpu1/cache/index0/type | 1 - .../sys/devices/system/cpu/cpu1/cache/index1/level | 1 - .../system/cpu/cpu1/cache/index1/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu1/cache/index1/size | 1 - .../sys/devices/system/cpu/cpu1/cache/index1/type | 1 - .../sys/devices/system/cpu/cpu1/cache/index2/level | 1 - .../system/cpu/cpu1/cache/index2/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu1/cache/index2/size | 1 - .../sys/devices/system/cpu/cpu1/cache/index2/type | 1 - .../devices/system/cpu/cpu1/topology/core_siblings | 1 - .../system/cpu/cpu1/topology/thread_siblings | 1 - .../sys/devices/system/node/node0/cpu0 | 1 - .../sys/devices/system/node/node0/cpu1 | 1 - .../sys/devices/system/node/node0/cpumap | 1 - tests/ts/lscpu/dumps/x86_64-necem14.tar.gz | Bin 0 -> 1307 bytes tests/ts/lscpu/dumps/x86_64-necem14/proc/cpuinfo | 46 --- .../sys/devices/system/cpu/cpu0/cache/index0/level | 1 - .../system/cpu/cpu0/cache/index0/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu0/cache/index0/size | 1 - .../sys/devices/system/cpu/cpu0/cache/index0/type | 1 - .../sys/devices/system/cpu/cpu0/cache/index1/level | 1 - .../system/cpu/cpu0/cache/index1/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu0/cache/index1/size | 1 - .../sys/devices/system/cpu/cpu0/cache/index1/type | 1 - .../devices/system/cpu/cpu0/topology/core_siblings | 1 - .../system/cpu/cpu0/topology/thread_siblings | 1 - .../sys/devices/system/cpu/cpu1/cache/index0/level | 1 - .../system/cpu/cpu1/cache/index0/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu1/cache/index0/size | 1 - .../sys/devices/system/cpu/cpu1/cache/index0/type | 1 - .../sys/devices/system/cpu/cpu1/cache/index1/level | 1 - .../system/cpu/cpu1/cache/index1/shared_cpu_map | 1 - .../sys/devices/system/cpu/cpu1/cache/index1/size | 1 - .../sys/devices/system/cpu/cpu1/cache/index1/type | 1 - .../devices/system/cpu/cpu1/topology/core_siblings | 1 - .../system/cpu/cpu1/topology/thread_siblings | 1 - .../sys/devices/system/node/node0/cpu0 | 1 - .../sys/devices/system/node/node0/cpu1 | 1 - .../sys/devices/system/node/node0/cpumap | 1 - tests/ts/lscpu/lscpu | 16 +- 1207 files changed, 11 insertions(+), 2523 deletions(-) create mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai.tar.gz delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/proc/cpuinfo delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu0/cache/index0/level delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu0/cache/index0/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu0/cache/index0/size delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu0/cache/index0/type delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu0/cache/index1/level delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu0/cache/index1/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu0/cache/index1/size delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu0/cache/index1/type delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu0/cache/index2/level delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu0/cache/index2/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu0/cache/index2/size delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu0/cache/index2/type delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu0/cache/index3/level delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu0/cache/index3/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu0/cache/index3/size delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu0/cache/index3/type delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu0/topology/core_siblings delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu0/topology/thread_siblings delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu1/cache/index0/level delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu1/cache/index0/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu1/cache/index0/size delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu1/cache/index0/type delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu1/cache/index1/level delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu1/cache/index1/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu1/cache/index1/size delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu1/cache/index1/type delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu1/cache/index2/level delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu1/cache/index2/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu1/cache/index2/size delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu1/cache/index2/type delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu1/cache/index3/level delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu1/cache/index3/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu1/cache/index3/size delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu1/cache/index3/type delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu1/topology/core_siblings delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu1/topology/thread_siblings delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu2/cache/index0/level delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu2/cache/index0/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu2/cache/index0/size delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu2/cache/index0/type delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu2/cache/index1/level delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu2/cache/index1/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu2/cache/index1/size delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu2/cache/index1/type delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu2/cache/index2/level delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu2/cache/index2/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu2/cache/index2/size delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu2/cache/index2/type delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu2/cache/index3/level delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu2/cache/index3/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu2/cache/index3/size delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu2/cache/index3/type delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu2/topology/core_siblings delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu2/topology/thread_siblings delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu3/cache/index0/level delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu3/cache/index0/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu3/cache/index0/size delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu3/cache/index0/type delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu3/cache/index1/level delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu3/cache/index1/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu3/cache/index1/size delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu3/cache/index1/type delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu3/cache/index2/level delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu3/cache/index2/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu3/cache/index2/size delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu3/cache/index2/type delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu3/cache/index3/level delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu3/cache/index3/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu3/cache/index3/size delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu3/cache/index3/type delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu3/topology/core_siblings delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu3/topology/thread_siblings delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu4/cache/index0/level delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu4/cache/index0/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu4/cache/index0/size delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu4/cache/index0/type delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu4/cache/index1/level delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu4/cache/index1/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu4/cache/index1/size delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu4/cache/index1/type delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu4/cache/index2/level delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu4/cache/index2/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu4/cache/index2/size delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu4/cache/index2/type delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu4/cache/index3/level delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu4/cache/index3/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu4/cache/index3/size delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu4/cache/index3/type delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu4/topology/core_siblings delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu4/topology/thread_siblings delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu5/cache/index0/level delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu5/cache/index0/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu5/cache/index0/size delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu5/cache/index0/type delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu5/cache/index1/level delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu5/cache/index1/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu5/cache/index1/size delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu5/cache/index1/type delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu5/cache/index2/level delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu5/cache/index2/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu5/cache/index2/size delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu5/cache/index2/type delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu5/cache/index3/level delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu5/cache/index3/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu5/cache/index3/size delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu5/cache/index3/type delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu5/topology/core_siblings delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu5/topology/thread_siblings delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu6/cache/index0/level delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu6/cache/index0/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu6/cache/index0/size delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu6/cache/index0/type delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu6/cache/index1/level delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu6/cache/index1/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu6/cache/index1/size delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu6/cache/index1/type delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu6/cache/index2/level delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu6/cache/index2/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu6/cache/index2/size delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu6/cache/index2/type delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu6/cache/index3/level delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu6/cache/index3/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu6/cache/index3/size delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu6/cache/index3/type delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu6/topology/core_siblings delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu6/topology/thread_siblings delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu7/cache/index0/level delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu7/cache/index0/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu7/cache/index0/size delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu7/cache/index0/type delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu7/cache/index1/level delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu7/cache/index1/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu7/cache/index1/size delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu7/cache/index1/type delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu7/cache/index2/level delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu7/cache/index2/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu7/cache/index2/size delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu7/cache/index2/type delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu7/cache/index3/level delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu7/cache/index3/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu7/cache/index3/size delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu7/cache/index3/type delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu7/topology/core_siblings delete mode 100644 tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu7/topology/thread_siblings create mode 100644 tests/ts/lscpu/dumps/i386-dellpe700.tar.gz delete mode 100644 tests/ts/lscpu/dumps/i386-dellpe700/proc/cpuinfo delete mode 100644 tests/ts/lscpu/dumps/i386-dellpe700/sys/devices/system/cpu/cpu0/thermal_throttle/count delete mode 100644 tests/ts/lscpu/dumps/i386-dellpe700/sys/devices/system/cpu/cpu0/topology/core_siblings delete mode 100644 tests/ts/lscpu/dumps/i386-dellpe700/sys/devices/system/cpu/cpu0/topology/thread_siblings delete mode 100644 tests/ts/lscpu/dumps/i386-dellpe700/sys/devices/system/cpu/cpu1/thermal_throttle/count delete mode 100644 tests/ts/lscpu/dumps/i386-dellpe700/sys/devices/system/cpu/cpu1/topology/core_siblings delete mode 100644 tests/ts/lscpu/dumps/i386-dellpe700/sys/devices/system/cpu/cpu1/topology/thread_siblings create mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb.tar.gz delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/proc/cpuinfo delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu0/cache/index0/level delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu0/cache/index0/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu0/cache/index0/size delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu0/cache/index0/type delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu0/cache/index1/level delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu0/cache/index1/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu0/cache/index1/size delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu0/cache/index1/type delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu0/cache/index2/level delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu0/cache/index2/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu0/cache/index2/size delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu0/cache/index2/type delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu0/topology/core_siblings delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu0/topology/thread_siblings delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu1/cache/index0/level delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu1/cache/index0/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu1/cache/index0/size delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu1/cache/index0/type delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu1/cache/index1/level delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu1/cache/index1/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu1/cache/index1/size delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu1/cache/index1/type delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu1/cache/index2/level delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu1/cache/index2/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu1/cache/index2/size delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu1/cache/index2/type delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu1/topology/core_siblings delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu1/topology/thread_siblings delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu2/cache/index0/level delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu2/cache/index0/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu2/cache/index0/size delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu2/cache/index0/type delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu2/cache/index1/level delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu2/cache/index1/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu2/cache/index1/size delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu2/cache/index1/type delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu2/cache/index2/level delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu2/cache/index2/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu2/cache/index2/size delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu2/cache/index2/type delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu2/topology/core_siblings delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu2/topology/thread_siblings delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu3/cache/index0/level delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu3/cache/index0/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu3/cache/index0/size delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu3/cache/index0/type delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu3/cache/index1/level delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu3/cache/index1/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu3/cache/index1/size delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu3/cache/index1/type delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu3/cache/index2/level delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu3/cache/index2/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu3/cache/index2/size delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu3/cache/index2/type delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu3/topology/core_siblings delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu3/topology/thread_siblings delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu4/cache/index0/level delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu4/cache/index0/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu4/cache/index0/size delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu4/cache/index0/type delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu4/cache/index1/level delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu4/cache/index1/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu4/cache/index1/size delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu4/cache/index1/type delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu4/cache/index2/level delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu4/cache/index2/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu4/cache/index2/size delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu4/cache/index2/type delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu4/topology/core_siblings delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu4/topology/thread_siblings delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu5/cache/index0/level delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu5/cache/index0/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu5/cache/index0/size delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu5/cache/index0/type delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu5/cache/index1/level delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu5/cache/index1/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu5/cache/index1/size delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu5/cache/index1/type delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu5/cache/index2/level delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu5/cache/index2/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu5/cache/index2/size delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu5/cache/index2/type delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu5/topology/core_siblings delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu5/topology/thread_siblings delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu6/cache/index0/level delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu6/cache/index0/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu6/cache/index0/size delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu6/cache/index0/type delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu6/cache/index1/level delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu6/cache/index1/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu6/cache/index1/size delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu6/cache/index1/type delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu6/cache/index2/level delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu6/cache/index2/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu6/cache/index2/size delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu6/cache/index2/type delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu6/topology/core_siblings delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu6/topology/thread_siblings delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu7/cache/index0/level delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu7/cache/index0/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu7/cache/index0/size delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu7/cache/index0/type delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu7/cache/index1/level delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu7/cache/index1/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu7/cache/index1/size delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu7/cache/index1/type delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu7/cache/index2/level delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu7/cache/index2/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu7/cache/index2/size delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu7/cache/index2/type delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu7/topology/core_siblings delete mode 100644 tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu7/topology/thread_siblings create mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn.tar.gz delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/proc/cpuinfo delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu0/cache/index0/level delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu0/cache/index0/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu0/cache/index0/size delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu0/cache/index0/type delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu0/cache/index1/level delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu0/cache/index1/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu0/cache/index1/size delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu0/cache/index1/type delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu0/cache/index2/level delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu0/cache/index2/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu0/cache/index2/size delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu0/cache/index2/type delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu0/cache/index3/level delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu0/cache/index3/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu0/cache/index3/size delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu0/cache/index3/type delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu0/topology/core_siblings delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu0/topology/thread_siblings delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu1/cache/index0/level delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu1/cache/index0/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu1/cache/index0/size delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu1/cache/index0/type delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu1/cache/index1/level delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu1/cache/index1/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu1/cache/index1/size delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu1/cache/index1/type delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu1/cache/index2/level delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu1/cache/index2/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu1/cache/index2/size delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu1/cache/index2/type delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu1/cache/index3/level delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu1/cache/index3/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu1/cache/index3/size delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu1/cache/index3/type delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu1/topology/core_siblings delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu1/topology/thread_siblings delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu2/cache/index0/level delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu2/cache/index0/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu2/cache/index0/size delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu2/cache/index0/type delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu2/cache/index1/level delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu2/cache/index1/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu2/cache/index1/size delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu2/cache/index1/type delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu2/cache/index2/level delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu2/cache/index2/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu2/cache/index2/size delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu2/cache/index2/type delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu2/cache/index3/level delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu2/cache/index3/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu2/cache/index3/size delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu2/cache/index3/type delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu2/topology/core_siblings delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu2/topology/thread_siblings delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu3/cache/index0/level delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu3/cache/index0/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu3/cache/index0/size delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu3/cache/index0/type delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu3/cache/index1/level delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu3/cache/index1/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu3/cache/index1/size delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu3/cache/index1/type delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu3/cache/index2/level delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu3/cache/index2/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu3/cache/index2/size delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu3/cache/index2/type delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu3/cache/index3/level delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu3/cache/index3/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu3/cache/index3/size delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu3/cache/index3/type delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu3/topology/core_siblings delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu3/topology/thread_siblings delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu4/cache/index0/level delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu4/cache/index0/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu4/cache/index0/size delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu4/cache/index0/type delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu4/cache/index1/level delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu4/cache/index1/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu4/cache/index1/size delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu4/cache/index1/type delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu4/cache/index2/level delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu4/cache/index2/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu4/cache/index2/size delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu4/cache/index2/type delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu4/cache/index3/level delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu4/cache/index3/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu4/cache/index3/size delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu4/cache/index3/type delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu4/topology/core_siblings delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu4/topology/thread_siblings delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu5/cache/index0/level delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu5/cache/index0/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu5/cache/index0/size delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu5/cache/index0/type delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu5/cache/index1/level delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu5/cache/index1/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu5/cache/index1/size delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu5/cache/index1/type delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu5/cache/index2/level delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu5/cache/index2/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu5/cache/index2/size delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu5/cache/index2/type delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu5/cache/index3/level delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu5/cache/index3/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu5/cache/index3/size delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu5/cache/index3/type delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu5/topology/core_siblings delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu5/topology/thread_siblings delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu6/cache/index0/level delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu6/cache/index0/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu6/cache/index0/size delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu6/cache/index0/type delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu6/cache/index1/level delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu6/cache/index1/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu6/cache/index1/size delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu6/cache/index1/type delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu6/cache/index2/level delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu6/cache/index2/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu6/cache/index2/size delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu6/cache/index2/type delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu6/cache/index3/level delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu6/cache/index3/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu6/cache/index3/size delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu6/cache/index3/type delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu6/topology/core_siblings delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu6/topology/thread_siblings delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu7/cache/index0/level delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu7/cache/index0/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu7/cache/index0/size delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu7/cache/index0/type delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu7/cache/index1/level delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu7/cache/index1/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu7/cache/index1/size delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu7/cache/index1/type delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu7/cache/index2/level delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu7/cache/index2/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu7/cache/index2/size delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu7/cache/index2/type delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu7/cache/index3/level delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu7/cache/index3/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu7/cache/index3/size delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu7/cache/index3/type delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu7/topology/core_siblings delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu7/topology/thread_siblings delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/node/node0/cpu4 delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/node/node0/cpu5 delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/node/node0/cpu6 delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/node/node0/cpu7 delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/node/node0/cpumap delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/node/node1/cpu0 delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/node/node1/cpu1 delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/node/node1/cpu2 delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/node/node1/cpu3 delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/node/node1/cpumap delete mode 100644 tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/node/node2/cpumap create mode 100644 tests/ts/lscpu/dumps/ia64-hprx1620.tar.gz delete mode 100644 tests/ts/lscpu/dumps/ia64-hprx1620/proc/cpuinfo delete mode 100644 tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu0/cache/index0/level delete mode 100644 tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu0/cache/index0/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu0/cache/index0/size delete mode 100644 tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu0/cache/index0/type delete mode 100644 tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu0/cache/index1/level delete mode 100644 tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu0/cache/index1/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu0/cache/index1/size delete mode 100644 tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu0/cache/index1/type delete mode 100644 tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu0/cache/index2/level delete mode 100644 tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu0/cache/index2/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu0/cache/index2/size delete mode 100644 tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu0/cache/index2/type delete mode 100644 tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu0/cache/index3/level delete mode 100644 tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu0/cache/index3/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu0/cache/index3/size delete mode 100644 tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu0/cache/index3/type delete mode 100644 tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu0/topology/core_siblings delete mode 100644 tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu0/topology/thread_siblings delete mode 100644 tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu1/cache/index0/level delete mode 100644 tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu1/cache/index0/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu1/cache/index0/size delete mode 100644 tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu1/cache/index0/type delete mode 100644 tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu1/cache/index1/level delete mode 100644 tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu1/cache/index1/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu1/cache/index1/size delete mode 100644 tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu1/cache/index1/type delete mode 100644 tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu1/cache/index2/level delete mode 100644 tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu1/cache/index2/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu1/cache/index2/size delete mode 100644 tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu1/cache/index2/type delete mode 100644 tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu1/cache/index3/level delete mode 100644 tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu1/cache/index3/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu1/cache/index3/size delete mode 100644 tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu1/cache/index3/type delete mode 100644 tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu1/topology/core_siblings delete mode 100644 tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu1/topology/thread_siblings delete mode 100644 tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/node/node0/cpu0 delete mode 100644 tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/node/node0/cpu1 delete mode 100644 tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/node/node0/cpumap create mode 100644 tests/ts/lscpu/dumps/ia64-pg0.tar.gz delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/proc/cpuinfo delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/cache/index0/level delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/cache/index0/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/cache/index0/size delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/cache/index0/type delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/cache/index1/level delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/cache/index1/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/cache/index1/size delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/cache/index1/type delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/cache/index2/level delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/cache/index2/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/cache/index2/size delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/cache/index2/type delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/cache/index3/level delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/cache/index3/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/cache/index3/size delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/cache/index3/type delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/cache/index4/level delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/cache/index4/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/cache/index4/size delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/cache/index4/type delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/topology/core_siblings delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/topology/thread_siblings delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/cache/index0/level delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/cache/index0/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/cache/index0/size delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/cache/index0/type delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/cache/index1/level delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/cache/index1/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/cache/index1/size delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/cache/index1/type delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/cache/index2/level delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/cache/index2/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/cache/index2/size delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/cache/index2/type delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/cache/index3/level delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/cache/index3/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/cache/index3/size delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/cache/index3/type delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/cache/index4/level delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/cache/index4/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/cache/index4/size delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/cache/index4/type delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/topology/core_siblings delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/topology/thread_siblings delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/cache/index0/level delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/cache/index0/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/cache/index0/size delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/cache/index0/type delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/cache/index1/level delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/cache/index1/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/cache/index1/size delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/cache/index1/type delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/cache/index2/level delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/cache/index2/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/cache/index2/size delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/cache/index2/type delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/cache/index3/level delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/cache/index3/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/cache/index3/size delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/cache/index3/type delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/cache/index4/level delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/cache/index4/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/cache/index4/size delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/cache/index4/type delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/topology/core_siblings delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/topology/thread_siblings delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/cache/index0/level delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/cache/index0/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/cache/index0/size delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/cache/index0/type delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/cache/index1/level delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/cache/index1/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/cache/index1/size delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/cache/index1/type delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/cache/index2/level delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/cache/index2/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/cache/index2/size delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/cache/index2/type delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/cache/index3/level delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/cache/index3/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/cache/index3/size delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/cache/index3/type delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/cache/index4/level delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/cache/index4/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/cache/index4/size delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/cache/index4/type delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/topology/core_siblings delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/topology/thread_siblings delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/cache/index0/level delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/cache/index0/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/cache/index0/size delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/cache/index0/type delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/cache/index1/level delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/cache/index1/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/cache/index1/size delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/cache/index1/type delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/cache/index2/level delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/cache/index2/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/cache/index2/size delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/cache/index2/type delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/cache/index3/level delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/cache/index3/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/cache/index3/size delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/cache/index3/type delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/cache/index4/level delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/cache/index4/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/cache/index4/size delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/cache/index4/type delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/topology/core_siblings delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/topology/thread_siblings delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/cache/index0/level delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/cache/index0/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/cache/index0/size delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/cache/index0/type delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/cache/index1/level delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/cache/index1/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/cache/index1/size delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/cache/index1/type delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/cache/index2/level delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/cache/index2/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/cache/index2/size delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/cache/index2/type delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/cache/index3/level delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/cache/index3/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/cache/index3/size delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/cache/index3/type delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/cache/index4/level delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/cache/index4/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/cache/index4/size delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/cache/index4/type delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/topology/core_siblings delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/topology/thread_siblings delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/cache/index0/level delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/cache/index0/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/cache/index0/size delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/cache/index0/type delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/cache/index1/level delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/cache/index1/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/cache/index1/size delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/cache/index1/type delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/cache/index2/level delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/cache/index2/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/cache/index2/size delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/cache/index2/type delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/cache/index3/level delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/cache/index3/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/cache/index3/size delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/cache/index3/type delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/cache/index4/level delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/cache/index4/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/cache/index4/size delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/cache/index4/type delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/topology/core_siblings delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/topology/thread_siblings delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/cache/index0/level delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/cache/index0/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/cache/index0/size delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/cache/index0/type delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/cache/index1/level delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/cache/index1/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/cache/index1/size delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/cache/index1/type delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/cache/index2/level delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/cache/index2/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/cache/index2/size delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/cache/index2/type delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/cache/index3/level delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/cache/index3/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/cache/index3/size delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/cache/index3/type delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/cache/index4/level delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/cache/index4/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/cache/index4/size delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/cache/index4/type delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/topology/core_siblings delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/topology/thread_siblings delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/cache/index0/level delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/cache/index0/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/cache/index0/size delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/cache/index0/type delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/cache/index1/level delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/cache/index1/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/cache/index1/size delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/cache/index1/type delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/cache/index2/level delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/cache/index2/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/cache/index2/size delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/cache/index2/type delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/cache/index3/level delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/cache/index3/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/cache/index3/size delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/cache/index3/type delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/cache/index4/level delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/cache/index4/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/cache/index4/size delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/cache/index4/type delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/topology/core_siblings delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/topology/thread_siblings delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/cache/index0/level delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/cache/index0/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/cache/index0/size delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/cache/index0/type delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/cache/index1/level delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/cache/index1/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/cache/index1/size delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/cache/index1/type delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/cache/index2/level delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/cache/index2/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/cache/index2/size delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/cache/index2/type delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/cache/index3/level delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/cache/index3/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/cache/index3/size delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/cache/index3/type delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/cache/index4/level delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/cache/index4/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/cache/index4/size delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/cache/index4/type delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/topology/core_siblings delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/topology/thread_siblings delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/cache/index0/level delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/cache/index0/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/cache/index0/size delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/cache/index0/type delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/cache/index1/level delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/cache/index1/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/cache/index1/size delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/cache/index1/type delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/cache/index2/level delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/cache/index2/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/cache/index2/size delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/cache/index2/type delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/cache/index3/level delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/cache/index3/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/cache/index3/size delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/cache/index3/type delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/cache/index4/level delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/cache/index4/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/cache/index4/size delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/cache/index4/type delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/topology/core_siblings delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/topology/thread_siblings delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/cache/index0/level delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/cache/index0/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/cache/index0/size delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/cache/index0/type delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/cache/index1/level delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/cache/index1/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/cache/index1/size delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/cache/index1/type delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/cache/index2/level delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/cache/index2/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/cache/index2/size delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/cache/index2/type delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/cache/index3/level delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/cache/index3/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/cache/index3/size delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/cache/index3/type delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/cache/index4/level delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/cache/index4/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/cache/index4/size delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/cache/index4/type delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/topology/core_siblings delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/topology/thread_siblings delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/cache/index0/level delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/cache/index0/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/cache/index0/size delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/cache/index0/type delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/cache/index1/level delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/cache/index1/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/cache/index1/size delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/cache/index1/type delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/cache/index2/level delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/cache/index2/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/cache/index2/size delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/cache/index2/type delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/cache/index3/level delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/cache/index3/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/cache/index3/size delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/cache/index3/type delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/cache/index4/level delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/cache/index4/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/cache/index4/size delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/cache/index4/type delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/topology/core_siblings delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/topology/thread_siblings delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/cache/index0/level delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/cache/index0/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/cache/index0/size delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/cache/index0/type delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/cache/index1/level delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/cache/index1/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/cache/index1/size delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/cache/index1/type delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/cache/index2/level delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/cache/index2/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/cache/index2/size delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/cache/index2/type delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/cache/index3/level delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/cache/index3/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/cache/index3/size delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/cache/index3/type delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/cache/index4/level delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/cache/index4/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/cache/index4/size delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/cache/index4/type delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/topology/core_siblings delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/topology/thread_siblings delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/cache/index0/level delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/cache/index0/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/cache/index0/size delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/cache/index0/type delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/cache/index1/level delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/cache/index1/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/cache/index1/size delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/cache/index1/type delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/cache/index2/level delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/cache/index2/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/cache/index2/size delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/cache/index2/type delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/cache/index3/level delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/cache/index3/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/cache/index3/size delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/cache/index3/type delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/cache/index4/level delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/cache/index4/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/cache/index4/size delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/cache/index4/type delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/topology/core_siblings delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/topology/thread_siblings delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/cache/index0/level delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/cache/index0/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/cache/index0/size delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/cache/index0/type delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/cache/index1/level delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/cache/index1/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/cache/index1/size delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/cache/index1/type delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/cache/index2/level delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/cache/index2/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/cache/index2/size delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/cache/index2/type delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/cache/index3/level delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/cache/index3/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/cache/index3/size delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/cache/index3/type delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/cache/index4/level delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/cache/index4/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/cache/index4/size delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/cache/index4/type delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/topology/core_siblings delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/topology/thread_siblings delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/node/node0/cpu0 delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/node/node0/cpu1 delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/node/node0/cpu2 delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/node/node0/cpu3 delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/node/node0/cpu4 delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/node/node0/cpu5 delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/node/node0/cpu6 delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/node/node0/cpu7 delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/node/node0/cpumap delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/node/node1/cpu10 delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/node/node1/cpu11 delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/node/node1/cpu12 delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/node/node1/cpu13 delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/node/node1/cpu14 delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/node/node1/cpu15 delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/node/node1/cpu8 delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/node/node1/cpu9 delete mode 100644 tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/node/node1/cpumap create mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585.tar.gz delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/proc/cpuinfo delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu0/cache/index0/level delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu0/cache/index0/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu0/cache/index0/size delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu0/cache/index0/type delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu0/cache/index1/level delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu0/cache/index1/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu0/cache/index1/size delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu0/cache/index1/type delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu0/cache/index2/level delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu0/cache/index2/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu0/cache/index2/size delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu0/cache/index2/type delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu0/cache/index3/level delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu0/cache/index3/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu0/cache/index3/size delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu0/cache/index3/type delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu0/topology/core_siblings delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu0/topology/thread_siblings delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu1/cache/index0/level delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu1/cache/index0/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu1/cache/index0/size delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu1/cache/index0/type delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu1/cache/index1/level delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu1/cache/index1/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu1/cache/index1/size delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu1/cache/index1/type delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu1/cache/index2/level delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu1/cache/index2/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu1/cache/index2/size delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu1/cache/index2/type delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu1/cache/index3/level delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu1/cache/index3/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu1/cache/index3/size delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu1/cache/index3/type delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu1/topology/core_siblings delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu1/topology/thread_siblings delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu10/cache/index0/level delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu10/cache/index0/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu10/cache/index0/size delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu10/cache/index0/type delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu10/cache/index1/level delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu10/cache/index1/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu10/cache/index1/size delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu10/cache/index1/type delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu10/cache/index2/level delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu10/cache/index2/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu10/cache/index2/size delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu10/cache/index2/type delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu10/cache/index3/level delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu10/cache/index3/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu10/cache/index3/size delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu10/cache/index3/type delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu10/topology/core_siblings delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu10/topology/thread_siblings delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu11/cache/index0/level delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu11/cache/index0/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu11/cache/index0/size delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu11/cache/index0/type delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu11/cache/index1/level delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu11/cache/index1/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu11/cache/index1/size delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu11/cache/index1/type delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu11/cache/index2/level delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu11/cache/index2/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu11/cache/index2/size delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu11/cache/index2/type delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu11/cache/index3/level delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu11/cache/index3/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu11/cache/index3/size delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu11/cache/index3/type delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu11/topology/core_siblings delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu11/topology/thread_siblings delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu12/cache/index0/level delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu12/cache/index0/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu12/cache/index0/size delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu12/cache/index0/type delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu12/cache/index1/level delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu12/cache/index1/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu12/cache/index1/size delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu12/cache/index1/type delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu12/cache/index2/level delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu12/cache/index2/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu12/cache/index2/size delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu12/cache/index2/type delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu12/cache/index3/level delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu12/cache/index3/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu12/cache/index3/size delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu12/cache/index3/type delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu12/topology/core_siblings delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu12/topology/thread_siblings delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu13/cache/index0/level delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu13/cache/index0/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu13/cache/index0/size delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu13/cache/index0/type delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu13/cache/index1/level delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu13/cache/index1/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu13/cache/index1/size delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu13/cache/index1/type delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu13/cache/index2/level delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu13/cache/index2/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu13/cache/index2/size delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu13/cache/index2/type delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu13/cache/index3/level delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu13/cache/index3/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu13/cache/index3/size delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu13/cache/index3/type delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu13/topology/core_siblings delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu13/topology/thread_siblings delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu14/cache/index0/level delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu14/cache/index0/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu14/cache/index0/size delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu14/cache/index0/type delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu14/cache/index1/level delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu14/cache/index1/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu14/cache/index1/size delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu14/cache/index1/type delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu14/cache/index2/level delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu14/cache/index2/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu14/cache/index2/size delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu14/cache/index2/type delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu14/cache/index3/level delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu14/cache/index3/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu14/cache/index3/size delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu14/cache/index3/type delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu14/topology/core_siblings delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu14/topology/thread_siblings delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu15/cache/index0/level delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu15/cache/index0/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu15/cache/index0/size delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu15/cache/index0/type delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu15/cache/index1/level delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu15/cache/index1/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu15/cache/index1/size delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu15/cache/index1/type delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu15/cache/index2/level delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu15/cache/index2/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu15/cache/index2/size delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu15/cache/index2/type delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu15/cache/index3/level delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu15/cache/index3/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu15/cache/index3/size delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu15/cache/index3/type delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu15/topology/core_siblings delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu15/topology/thread_siblings delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu2/cache/index0/level delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu2/cache/index0/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu2/cache/index0/size delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu2/cache/index0/type delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu2/cache/index1/level delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu2/cache/index1/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu2/cache/index1/size delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu2/cache/index1/type delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu2/cache/index2/level delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu2/cache/index2/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu2/cache/index2/size delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu2/cache/index2/type delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu2/cache/index3/level delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu2/cache/index3/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu2/cache/index3/size delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu2/cache/index3/type delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu2/topology/core_siblings delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu2/topology/thread_siblings delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu3/cache/index0/level delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu3/cache/index0/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu3/cache/index0/size delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu3/cache/index0/type delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu3/cache/index1/level delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu3/cache/index1/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu3/cache/index1/size delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu3/cache/index1/type delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu3/cache/index2/level delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu3/cache/index2/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu3/cache/index2/size delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu3/cache/index2/type delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu3/cache/index3/level delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu3/cache/index3/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu3/cache/index3/size delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu3/cache/index3/type delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu3/topology/core_siblings delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu3/topology/thread_siblings delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu4/cache/index0/level delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu4/cache/index0/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu4/cache/index0/size delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu4/cache/index0/type delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu4/cache/index1/level delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu4/cache/index1/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu4/cache/index1/size delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu4/cache/index1/type delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu4/cache/index2/level delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu4/cache/index2/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu4/cache/index2/size delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu4/cache/index2/type delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu4/cache/index3/level delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu4/cache/index3/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu4/cache/index3/size delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu4/cache/index3/type delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu4/topology/core_siblings delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu4/topology/thread_siblings delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu5/cache/index0/level delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu5/cache/index0/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu5/cache/index0/size delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu5/cache/index0/type delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu5/cache/index1/level delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu5/cache/index1/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu5/cache/index1/size delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu5/cache/index1/type delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu5/cache/index2/level delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu5/cache/index2/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu5/cache/index2/size delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu5/cache/index2/type delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu5/cache/index3/level delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu5/cache/index3/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu5/cache/index3/size delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu5/cache/index3/type delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu5/topology/core_siblings delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu5/topology/thread_siblings delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu6/cache/index0/level delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu6/cache/index0/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu6/cache/index0/size delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu6/cache/index0/type delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu6/cache/index1/level delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu6/cache/index1/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu6/cache/index1/size delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu6/cache/index1/type delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu6/cache/index2/level delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu6/cache/index2/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu6/cache/index2/size delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu6/cache/index2/type delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu6/cache/index3/level delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu6/cache/index3/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu6/cache/index3/size delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu6/cache/index3/type delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu6/topology/core_siblings delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu6/topology/thread_siblings delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu7/cache/index0/level delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu7/cache/index0/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu7/cache/index0/size delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu7/cache/index0/type delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu7/cache/index1/level delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu7/cache/index1/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu7/cache/index1/size delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu7/cache/index1/type delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu7/cache/index2/level delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu7/cache/index2/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu7/cache/index2/size delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu7/cache/index2/type delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu7/cache/index3/level delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu7/cache/index3/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu7/cache/index3/size delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu7/cache/index3/type delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu7/topology/core_siblings delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu7/topology/thread_siblings delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu8/cache/index0/level delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu8/cache/index0/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu8/cache/index0/size delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu8/cache/index0/type delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu8/cache/index1/level delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu8/cache/index1/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu8/cache/index1/size delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu8/cache/index1/type delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu8/cache/index2/level delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu8/cache/index2/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu8/cache/index2/size delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu8/cache/index2/type delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu8/cache/index3/level delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu8/cache/index3/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu8/cache/index3/size delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu8/cache/index3/type delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu8/topology/core_siblings delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu8/topology/thread_siblings delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu9/cache/index0/level delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu9/cache/index0/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu9/cache/index0/size delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu9/cache/index0/type delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu9/cache/index1/level delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu9/cache/index1/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu9/cache/index1/size delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu9/cache/index1/type delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu9/cache/index2/level delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu9/cache/index2/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu9/cache/index2/size delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu9/cache/index2/type delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu9/cache/index3/level delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu9/cache/index3/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu9/cache/index3/size delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu9/cache/index3/type delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu9/topology/core_siblings delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu9/topology/thread_siblings delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/node/node0/cpu0 delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/node/node0/cpu12 delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/node/node0/cpu4 delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/node/node0/cpu8 delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/node/node0/cpumap delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/node/node1/cpu1 delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/node/node1/cpu13 delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/node/node1/cpu5 delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/node/node1/cpu9 delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/node/node1/cpumap delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/node/node2/cpu10 delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/node/node2/cpu14 delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/node/node2/cpu2 delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/node/node2/cpu6 delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/node/node2/cpumap delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/node/node3/cpu11 delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/node/node3/cpu15 delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/node/node3/cpu3 delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/node/node3/cpu7 delete mode 100644 tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/node/node3/cpumap create mode 100644 tests/ts/lscpu/dumps/x86_64-ibme326m.tar.gz delete mode 100644 tests/ts/lscpu/dumps/x86_64-ibme326m/proc/cpuinfo delete mode 100644 tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu0/cache/index0/level delete mode 100644 tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu0/cache/index0/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu0/cache/index0/size delete mode 100644 tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu0/cache/index0/type delete mode 100644 tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu0/cache/index1/level delete mode 100644 tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu0/cache/index1/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu0/cache/index1/size delete mode 100644 tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu0/cache/index1/type delete mode 100644 tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu0/cache/index2/level delete mode 100644 tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu0/cache/index2/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu0/cache/index2/size delete mode 100644 tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu0/cache/index2/type delete mode 100644 tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu0/topology/core_siblings delete mode 100644 tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu0/topology/thread_siblings delete mode 100644 tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu1/cache/index0/level delete mode 100644 tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu1/cache/index0/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu1/cache/index0/size delete mode 100644 tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu1/cache/index0/type delete mode 100644 tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu1/cache/index1/level delete mode 100644 tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu1/cache/index1/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu1/cache/index1/size delete mode 100644 tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu1/cache/index1/type delete mode 100644 tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu1/cache/index2/level delete mode 100644 tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu1/cache/index2/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu1/cache/index2/size delete mode 100644 tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu1/cache/index2/type delete mode 100644 tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu1/topology/core_siblings delete mode 100644 tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu1/topology/thread_siblings delete mode 100644 tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/node/node0/cpu0 delete mode 100644 tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/node/node0/cpu1 delete mode 100644 tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/node/node0/cpumap create mode 100644 tests/ts/lscpu/dumps/x86_64-necem14.tar.gz delete mode 100644 tests/ts/lscpu/dumps/x86_64-necem14/proc/cpuinfo delete mode 100644 tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/cpu/cpu0/cache/index0/level delete mode 100644 tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/cpu/cpu0/cache/index0/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/cpu/cpu0/cache/index0/size delete mode 100644 tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/cpu/cpu0/cache/index0/type delete mode 100644 tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/cpu/cpu0/cache/index1/level delete mode 100644 tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/cpu/cpu0/cache/index1/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/cpu/cpu0/cache/index1/size delete mode 100644 tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/cpu/cpu0/cache/index1/type delete mode 100644 tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/cpu/cpu0/topology/core_siblings delete mode 100644 tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/cpu/cpu0/topology/thread_siblings delete mode 100644 tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/cpu/cpu1/cache/index0/level delete mode 100644 tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/cpu/cpu1/cache/index0/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/cpu/cpu1/cache/index0/size delete mode 100644 tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/cpu/cpu1/cache/index0/type delete mode 100644 tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/cpu/cpu1/cache/index1/level delete mode 100644 tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/cpu/cpu1/cache/index1/shared_cpu_map delete mode 100644 tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/cpu/cpu1/cache/index1/size delete mode 100644 tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/cpu/cpu1/cache/index1/type delete mode 100644 tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/cpu/cpu1/topology/core_siblings delete mode 100644 tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/cpu/cpu1/topology/thread_siblings delete mode 100644 tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/node/node0/cpu0 delete mode 100644 tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/node/node0/cpu1 delete mode 100644 tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/node/node0/cpumap diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai.tar.gz b/tests/ts/lscpu/dumps/i386-amdshanghai.tar.gz new file mode 100644 index 00000000..199c22b3 Binary files /dev/null and b/tests/ts/lscpu/dumps/i386-amdshanghai.tar.gz differ diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/proc/cpuinfo b/tests/ts/lscpu/dumps/i386-amdshanghai/proc/cpuinfo deleted file mode 100644 index 7096d383..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/proc/cpuinfo +++ /dev/null @@ -1,184 +0,0 @@ -processor : 0 -vendor_id : AuthenticAMD -cpu family : 16 -model : 4 -model name : AMD Engineering Sample -stepping : 0 -cpu MHz : 1995.158 -cache size : 512 KB -physical id : 0 -siblings : 4 -core id : 0 -cpu cores : 4 -fdiv_bug : no -hlt_bug : no -f00f_bug : no -coma_bug : no -fpu : yes -fpu_exception : yes -cpuid level : 5 -wp : yes -flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc pni cx16 popcnt lahf_lm cmp_legacy svm extapic cr8legacy abm sse4a misalignsse 3dnowprefetch osvw ibs ts ttp tm stc 100mhzsteps hwpstate [8] -bogomips : 3992.50 - -processor : 1 -vendor_id : AuthenticAMD -cpu family : 16 -model : 4 -model name : AMD Engineering Sample -stepping : 0 -cpu MHz : 1995.158 -cache size : 512 KB -physical id : 0 -siblings : 4 -core id : 1 -cpu cores : 4 -fdiv_bug : no -hlt_bug : no -f00f_bug : no -coma_bug : no -fpu : yes -fpu_exception : yes -cpuid level : 5 -wp : yes -flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc pni cx16 popcnt lahf_lm cmp_legacy svm extapic cr8legacy abm sse4a misalignsse 3dnowprefetch osvw ibs ts ttp tm stc 100mhzsteps hwpstate [8] -bogomips : 3991.05 - -processor : 2 -vendor_id : AuthenticAMD -cpu family : 16 -model : 4 -model name : AMD Engineering Sample -stepping : 0 -cpu MHz : 1995.158 -cache size : 512 KB -physical id : 0 -siblings : 4 -core id : 2 -cpu cores : 4 -fdiv_bug : no -hlt_bug : no -f00f_bug : no -coma_bug : no -fpu : yes -fpu_exception : yes -cpuid level : 5 -wp : yes -flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc pni cx16 popcnt lahf_lm cmp_legacy svm extapic cr8legacy abm sse4a misalignsse 3dnowprefetch osvw ibs ts ttp tm stc 100mhzsteps hwpstate [8] -bogomips : 3993.85 - -processor : 3 -vendor_id : AuthenticAMD -cpu family : 16 -model : 4 -model name : AMD Engineering Sample -stepping : 0 -cpu MHz : 1995.158 -cache size : 512 KB -physical id : 0 -siblings : 4 -core id : 3 -cpu cores : 4 -fdiv_bug : no -hlt_bug : no -f00f_bug : no -coma_bug : no -fpu : yes -fpu_exception : yes -cpuid level : 5 -wp : yes -flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc pni cx16 popcnt lahf_lm cmp_legacy svm extapic cr8legacy abm sse4a misalignsse 3dnowprefetch osvw ibs ts ttp tm stc 100mhzsteps hwpstate [8] -bogomips : 3993.27 - -processor : 4 -vendor_id : AuthenticAMD -cpu family : 16 -model : 4 -model name : AMD Engineering Sample -stepping : 0 -cpu MHz : 1995.158 -cache size : 512 KB -physical id : 1 -siblings : 4 -core id : 0 -cpu cores : 4 -fdiv_bug : no -hlt_bug : no -f00f_bug : no -coma_bug : no -fpu : yes -fpu_exception : yes -cpuid level : 5 -wp : yes -flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc pni cx16 popcnt lahf_lm cmp_legacy svm extapic cr8legacy abm sse4a misalignsse 3dnowprefetch osvw ibs ts ttp tm stc 100mhzsteps hwpstate [8] -bogomips : 3990.03 - -processor : 5 -vendor_id : AuthenticAMD -cpu family : 16 -model : 4 -model name : AMD Engineering Sample -stepping : 0 -cpu MHz : 1995.158 -cache size : 512 KB -physical id : 1 -siblings : 4 -core id : 1 -cpu cores : 4 -fdiv_bug : no -hlt_bug : no -f00f_bug : no -coma_bug : no -fpu : yes -fpu_exception : yes -cpuid level : 5 -wp : yes -flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc pni cx16 popcnt lahf_lm cmp_legacy svm extapic cr8legacy abm sse4a misalignsse 3dnowprefetch osvw ibs ts ttp tm stc 100mhzsteps hwpstate [8] -bogomips : 3990.09 - -processor : 6 -vendor_id : AuthenticAMD -cpu family : 16 -model : 4 -model name : AMD Engineering Sample -stepping : 0 -cpu MHz : 1995.158 -cache size : 512 KB -physical id : 1 -siblings : 4 -core id : 2 -cpu cores : 4 -fdiv_bug : no -hlt_bug : no -f00f_bug : no -coma_bug : no -fpu : yes -fpu_exception : yes -cpuid level : 5 -wp : yes -flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc pni cx16 popcnt lahf_lm cmp_legacy svm extapic cr8legacy abm sse4a misalignsse 3dnowprefetch osvw ibs ts ttp tm stc 100mhzsteps hwpstate [8] -bogomips : 3990.04 - -processor : 7 -vendor_id : AuthenticAMD -cpu family : 16 -model : 4 -model name : AMD Engineering Sample -stepping : 0 -cpu MHz : 1995.158 -cache size : 512 KB -physical id : 1 -siblings : 4 -core id : 3 -cpu cores : 4 -fdiv_bug : no -hlt_bug : no -f00f_bug : no -coma_bug : no -fpu : yes -fpu_exception : yes -cpuid level : 5 -wp : yes -flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc pni cx16 popcnt lahf_lm cmp_legacy svm extapic cr8legacy abm sse4a misalignsse 3dnowprefetch osvw ibs ts ttp tm stc 100mhzsteps hwpstate [8] -bogomips : 3989.99 - diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu0/cache/index0/level b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu0/cache/index0/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu0/cache/index0/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu0/cache/index0/shared_cpu_map b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu0/cache/index0/shared_cpu_map deleted file mode 100644 index d3476039..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu0/cache/index0/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000001 diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu0/cache/index0/size b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu0/cache/index0/size deleted file mode 100644 index 176f9414..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu0/cache/index0/size +++ /dev/null @@ -1 +0,0 @@ -512K diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu0/cache/index0/type b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu0/cache/index0/type deleted file mode 100644 index 0b7088ec..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu0/cache/index0/type +++ /dev/null @@ -1 +0,0 @@ -Data diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu0/cache/index1/level b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu0/cache/index1/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu0/cache/index1/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu0/cache/index1/shared_cpu_map b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu0/cache/index1/shared_cpu_map deleted file mode 100644 index d3476039..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu0/cache/index1/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000001 diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu0/cache/index1/size b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu0/cache/index1/size deleted file mode 100644 index 176f9414..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu0/cache/index1/size +++ /dev/null @@ -1 +0,0 @@ -512K diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu0/cache/index1/type b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu0/cache/index1/type deleted file mode 100644 index 9a53cbfa..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu0/cache/index1/type +++ /dev/null @@ -1 +0,0 @@ -Instruction diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu0/cache/index2/level b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu0/cache/index2/level deleted file mode 100644 index 0cfbf088..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu0/cache/index2/level +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu0/cache/index2/shared_cpu_map b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu0/cache/index2/shared_cpu_map deleted file mode 100644 index d3476039..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu0/cache/index2/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000001 diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu0/cache/index2/size b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu0/cache/index2/size deleted file mode 100644 index 176f9414..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu0/cache/index2/size +++ /dev/null @@ -1 +0,0 @@ -512K diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu0/cache/index2/type b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu0/cache/index2/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu0/cache/index2/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu0/cache/index3/level b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu0/cache/index3/level deleted file mode 100644 index 00750edc..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu0/cache/index3/level +++ /dev/null @@ -1 +0,0 @@ -3 diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu0/cache/index3/shared_cpu_map b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu0/cache/index3/shared_cpu_map deleted file mode 100644 index d3476039..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu0/cache/index3/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000001 diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu0/cache/index3/size b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu0/cache/index3/size deleted file mode 100644 index fd6858c5..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu0/cache/index3/size +++ /dev/null @@ -1 +0,0 @@ -6144K diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu0/cache/index3/type b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu0/cache/index3/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu0/cache/index3/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu0/topology/core_siblings b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu0/topology/core_siblings deleted file mode 100644 index 61524e4b..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu0/topology/core_siblings +++ /dev/null @@ -1 +0,0 @@ -0000000f diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu0/topology/thread_siblings b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu0/topology/thread_siblings deleted file mode 100644 index d3476039..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu0/topology/thread_siblings +++ /dev/null @@ -1 +0,0 @@ -00000001 diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu1/cache/index0/level b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu1/cache/index0/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu1/cache/index0/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu1/cache/index0/shared_cpu_map b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu1/cache/index0/shared_cpu_map deleted file mode 100644 index 0af11c55..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu1/cache/index0/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000002 diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu1/cache/index0/size b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu1/cache/index0/size deleted file mode 100644 index 176f9414..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu1/cache/index0/size +++ /dev/null @@ -1 +0,0 @@ -512K diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu1/cache/index0/type b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu1/cache/index0/type deleted file mode 100644 index 0b7088ec..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu1/cache/index0/type +++ /dev/null @@ -1 +0,0 @@ -Data diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu1/cache/index1/level b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu1/cache/index1/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu1/cache/index1/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu1/cache/index1/shared_cpu_map b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu1/cache/index1/shared_cpu_map deleted file mode 100644 index 0af11c55..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu1/cache/index1/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000002 diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu1/cache/index1/size b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu1/cache/index1/size deleted file mode 100644 index 176f9414..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu1/cache/index1/size +++ /dev/null @@ -1 +0,0 @@ -512K diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu1/cache/index1/type b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu1/cache/index1/type deleted file mode 100644 index 9a53cbfa..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu1/cache/index1/type +++ /dev/null @@ -1 +0,0 @@ -Instruction diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu1/cache/index2/level b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu1/cache/index2/level deleted file mode 100644 index 0cfbf088..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu1/cache/index2/level +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu1/cache/index2/shared_cpu_map b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu1/cache/index2/shared_cpu_map deleted file mode 100644 index 0af11c55..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu1/cache/index2/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000002 diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu1/cache/index2/size b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu1/cache/index2/size deleted file mode 100644 index 176f9414..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu1/cache/index2/size +++ /dev/null @@ -1 +0,0 @@ -512K diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu1/cache/index2/type b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu1/cache/index2/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu1/cache/index2/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu1/cache/index3/level b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu1/cache/index3/level deleted file mode 100644 index 00750edc..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu1/cache/index3/level +++ /dev/null @@ -1 +0,0 @@ -3 diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu1/cache/index3/shared_cpu_map b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu1/cache/index3/shared_cpu_map deleted file mode 100644 index 0af11c55..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu1/cache/index3/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000002 diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu1/cache/index3/size b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu1/cache/index3/size deleted file mode 100644 index fd6858c5..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu1/cache/index3/size +++ /dev/null @@ -1 +0,0 @@ -6144K diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu1/cache/index3/type b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu1/cache/index3/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu1/cache/index3/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu1/topology/core_siblings b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu1/topology/core_siblings deleted file mode 100644 index 61524e4b..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu1/topology/core_siblings +++ /dev/null @@ -1 +0,0 @@ -0000000f diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu1/topology/thread_siblings b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu1/topology/thread_siblings deleted file mode 100644 index 0af11c55..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu1/topology/thread_siblings +++ /dev/null @@ -1 +0,0 @@ -00000002 diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu2/cache/index0/level b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu2/cache/index0/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu2/cache/index0/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu2/cache/index0/shared_cpu_map b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu2/cache/index0/shared_cpu_map deleted file mode 100644 index 5fd34aea..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu2/cache/index0/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000004 diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu2/cache/index0/size b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu2/cache/index0/size deleted file mode 100644 index 176f9414..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu2/cache/index0/size +++ /dev/null @@ -1 +0,0 @@ -512K diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu2/cache/index0/type b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu2/cache/index0/type deleted file mode 100644 index 0b7088ec..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu2/cache/index0/type +++ /dev/null @@ -1 +0,0 @@ -Data diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu2/cache/index1/level b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu2/cache/index1/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu2/cache/index1/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu2/cache/index1/shared_cpu_map b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu2/cache/index1/shared_cpu_map deleted file mode 100644 index 5fd34aea..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu2/cache/index1/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000004 diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu2/cache/index1/size b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu2/cache/index1/size deleted file mode 100644 index 176f9414..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu2/cache/index1/size +++ /dev/null @@ -1 +0,0 @@ -512K diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu2/cache/index1/type b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu2/cache/index1/type deleted file mode 100644 index 9a53cbfa..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu2/cache/index1/type +++ /dev/null @@ -1 +0,0 @@ -Instruction diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu2/cache/index2/level b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu2/cache/index2/level deleted file mode 100644 index 0cfbf088..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu2/cache/index2/level +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu2/cache/index2/shared_cpu_map b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu2/cache/index2/shared_cpu_map deleted file mode 100644 index 5fd34aea..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu2/cache/index2/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000004 diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu2/cache/index2/size b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu2/cache/index2/size deleted file mode 100644 index 176f9414..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu2/cache/index2/size +++ /dev/null @@ -1 +0,0 @@ -512K diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu2/cache/index2/type b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu2/cache/index2/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu2/cache/index2/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu2/cache/index3/level b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu2/cache/index3/level deleted file mode 100644 index 00750edc..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu2/cache/index3/level +++ /dev/null @@ -1 +0,0 @@ -3 diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu2/cache/index3/shared_cpu_map b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu2/cache/index3/shared_cpu_map deleted file mode 100644 index 5fd34aea..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu2/cache/index3/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000004 diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu2/cache/index3/size b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu2/cache/index3/size deleted file mode 100644 index fd6858c5..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu2/cache/index3/size +++ /dev/null @@ -1 +0,0 @@ -6144K diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu2/cache/index3/type b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu2/cache/index3/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu2/cache/index3/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu2/topology/core_siblings b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu2/topology/core_siblings deleted file mode 100644 index 61524e4b..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu2/topology/core_siblings +++ /dev/null @@ -1 +0,0 @@ -0000000f diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu2/topology/thread_siblings b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu2/topology/thread_siblings deleted file mode 100644 index 5fd34aea..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu2/topology/thread_siblings +++ /dev/null @@ -1 +0,0 @@ -00000004 diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu3/cache/index0/level b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu3/cache/index0/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu3/cache/index0/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu3/cache/index0/shared_cpu_map b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu3/cache/index0/shared_cpu_map deleted file mode 100644 index d718dd94..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu3/cache/index0/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000008 diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu3/cache/index0/size b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu3/cache/index0/size deleted file mode 100644 index 176f9414..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu3/cache/index0/size +++ /dev/null @@ -1 +0,0 @@ -512K diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu3/cache/index0/type b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu3/cache/index0/type deleted file mode 100644 index 0b7088ec..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu3/cache/index0/type +++ /dev/null @@ -1 +0,0 @@ -Data diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu3/cache/index1/level b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu3/cache/index1/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu3/cache/index1/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu3/cache/index1/shared_cpu_map b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu3/cache/index1/shared_cpu_map deleted file mode 100644 index d718dd94..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu3/cache/index1/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000008 diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu3/cache/index1/size b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu3/cache/index1/size deleted file mode 100644 index 176f9414..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu3/cache/index1/size +++ /dev/null @@ -1 +0,0 @@ -512K diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu3/cache/index1/type b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu3/cache/index1/type deleted file mode 100644 index 9a53cbfa..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu3/cache/index1/type +++ /dev/null @@ -1 +0,0 @@ -Instruction diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu3/cache/index2/level b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu3/cache/index2/level deleted file mode 100644 index 0cfbf088..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu3/cache/index2/level +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu3/cache/index2/shared_cpu_map b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu3/cache/index2/shared_cpu_map deleted file mode 100644 index d718dd94..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu3/cache/index2/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000008 diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu3/cache/index2/size b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu3/cache/index2/size deleted file mode 100644 index 176f9414..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu3/cache/index2/size +++ /dev/null @@ -1 +0,0 @@ -512K diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu3/cache/index2/type b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu3/cache/index2/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu3/cache/index2/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu3/cache/index3/level b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu3/cache/index3/level deleted file mode 100644 index 00750edc..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu3/cache/index3/level +++ /dev/null @@ -1 +0,0 @@ -3 diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu3/cache/index3/shared_cpu_map b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu3/cache/index3/shared_cpu_map deleted file mode 100644 index d718dd94..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu3/cache/index3/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000008 diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu3/cache/index3/size b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu3/cache/index3/size deleted file mode 100644 index fd6858c5..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu3/cache/index3/size +++ /dev/null @@ -1 +0,0 @@ -6144K diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu3/cache/index3/type b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu3/cache/index3/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu3/cache/index3/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu3/topology/core_siblings b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu3/topology/core_siblings deleted file mode 100644 index 61524e4b..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu3/topology/core_siblings +++ /dev/null @@ -1 +0,0 @@ -0000000f diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu3/topology/thread_siblings b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu3/topology/thread_siblings deleted file mode 100644 index d718dd94..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu3/topology/thread_siblings +++ /dev/null @@ -1 +0,0 @@ -00000008 diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu4/cache/index0/level b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu4/cache/index0/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu4/cache/index0/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu4/cache/index0/shared_cpu_map b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu4/cache/index0/shared_cpu_map deleted file mode 100644 index eb708f55..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu4/cache/index0/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000010 diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu4/cache/index0/size b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu4/cache/index0/size deleted file mode 100644 index 176f9414..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu4/cache/index0/size +++ /dev/null @@ -1 +0,0 @@ -512K diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu4/cache/index0/type b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu4/cache/index0/type deleted file mode 100644 index 0b7088ec..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu4/cache/index0/type +++ /dev/null @@ -1 +0,0 @@ -Data diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu4/cache/index1/level b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu4/cache/index1/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu4/cache/index1/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu4/cache/index1/shared_cpu_map b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu4/cache/index1/shared_cpu_map deleted file mode 100644 index eb708f55..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu4/cache/index1/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000010 diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu4/cache/index1/size b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu4/cache/index1/size deleted file mode 100644 index 176f9414..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu4/cache/index1/size +++ /dev/null @@ -1 +0,0 @@ -512K diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu4/cache/index1/type b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu4/cache/index1/type deleted file mode 100644 index 9a53cbfa..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu4/cache/index1/type +++ /dev/null @@ -1 +0,0 @@ -Instruction diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu4/cache/index2/level b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu4/cache/index2/level deleted file mode 100644 index 0cfbf088..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu4/cache/index2/level +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu4/cache/index2/shared_cpu_map b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu4/cache/index2/shared_cpu_map deleted file mode 100644 index eb708f55..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu4/cache/index2/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000010 diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu4/cache/index2/size b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu4/cache/index2/size deleted file mode 100644 index 176f9414..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu4/cache/index2/size +++ /dev/null @@ -1 +0,0 @@ -512K diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu4/cache/index2/type b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu4/cache/index2/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu4/cache/index2/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu4/cache/index3/level b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu4/cache/index3/level deleted file mode 100644 index 00750edc..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu4/cache/index3/level +++ /dev/null @@ -1 +0,0 @@ -3 diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu4/cache/index3/shared_cpu_map b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu4/cache/index3/shared_cpu_map deleted file mode 100644 index eb708f55..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu4/cache/index3/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000010 diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu4/cache/index3/size b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu4/cache/index3/size deleted file mode 100644 index fd6858c5..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu4/cache/index3/size +++ /dev/null @@ -1 +0,0 @@ -6144K diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu4/cache/index3/type b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu4/cache/index3/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu4/cache/index3/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu4/topology/core_siblings b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu4/topology/core_siblings deleted file mode 100644 index 94fda38b..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu4/topology/core_siblings +++ /dev/null @@ -1 +0,0 @@ -000000f0 diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu4/topology/thread_siblings b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu4/topology/thread_siblings deleted file mode 100644 index eb708f55..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu4/topology/thread_siblings +++ /dev/null @@ -1 +0,0 @@ -00000010 diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu5/cache/index0/level b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu5/cache/index0/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu5/cache/index0/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu5/cache/index0/shared_cpu_map b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu5/cache/index0/shared_cpu_map deleted file mode 100644 index 827aafe1..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu5/cache/index0/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000020 diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu5/cache/index0/size b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu5/cache/index0/size deleted file mode 100644 index 176f9414..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu5/cache/index0/size +++ /dev/null @@ -1 +0,0 @@ -512K diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu5/cache/index0/type b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu5/cache/index0/type deleted file mode 100644 index 0b7088ec..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu5/cache/index0/type +++ /dev/null @@ -1 +0,0 @@ -Data diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu5/cache/index1/level b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu5/cache/index1/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu5/cache/index1/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu5/cache/index1/shared_cpu_map b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu5/cache/index1/shared_cpu_map deleted file mode 100644 index 827aafe1..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu5/cache/index1/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000020 diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu5/cache/index1/size b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu5/cache/index1/size deleted file mode 100644 index 176f9414..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu5/cache/index1/size +++ /dev/null @@ -1 +0,0 @@ -512K diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu5/cache/index1/type b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu5/cache/index1/type deleted file mode 100644 index 9a53cbfa..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu5/cache/index1/type +++ /dev/null @@ -1 +0,0 @@ -Instruction diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu5/cache/index2/level b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu5/cache/index2/level deleted file mode 100644 index 0cfbf088..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu5/cache/index2/level +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu5/cache/index2/shared_cpu_map b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu5/cache/index2/shared_cpu_map deleted file mode 100644 index 827aafe1..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu5/cache/index2/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000020 diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu5/cache/index2/size b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu5/cache/index2/size deleted file mode 100644 index 176f9414..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu5/cache/index2/size +++ /dev/null @@ -1 +0,0 @@ -512K diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu5/cache/index2/type b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu5/cache/index2/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu5/cache/index2/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu5/cache/index3/level b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu5/cache/index3/level deleted file mode 100644 index 00750edc..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu5/cache/index3/level +++ /dev/null @@ -1 +0,0 @@ -3 diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu5/cache/index3/shared_cpu_map b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu5/cache/index3/shared_cpu_map deleted file mode 100644 index 827aafe1..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu5/cache/index3/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000020 diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu5/cache/index3/size b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu5/cache/index3/size deleted file mode 100644 index fd6858c5..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu5/cache/index3/size +++ /dev/null @@ -1 +0,0 @@ -6144K diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu5/cache/index3/type b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu5/cache/index3/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu5/cache/index3/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu5/topology/core_siblings b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu5/topology/core_siblings deleted file mode 100644 index 94fda38b..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu5/topology/core_siblings +++ /dev/null @@ -1 +0,0 @@ -000000f0 diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu5/topology/thread_siblings b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu5/topology/thread_siblings deleted file mode 100644 index 827aafe1..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu5/topology/thread_siblings +++ /dev/null @@ -1 +0,0 @@ -00000020 diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu6/cache/index0/level b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu6/cache/index0/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu6/cache/index0/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu6/cache/index0/shared_cpu_map b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu6/cache/index0/shared_cpu_map deleted file mode 100644 index 341d4992..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu6/cache/index0/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000040 diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu6/cache/index0/size b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu6/cache/index0/size deleted file mode 100644 index 176f9414..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu6/cache/index0/size +++ /dev/null @@ -1 +0,0 @@ -512K diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu6/cache/index0/type b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu6/cache/index0/type deleted file mode 100644 index 0b7088ec..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu6/cache/index0/type +++ /dev/null @@ -1 +0,0 @@ -Data diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu6/cache/index1/level b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu6/cache/index1/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu6/cache/index1/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu6/cache/index1/shared_cpu_map b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu6/cache/index1/shared_cpu_map deleted file mode 100644 index 341d4992..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu6/cache/index1/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000040 diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu6/cache/index1/size b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu6/cache/index1/size deleted file mode 100644 index 176f9414..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu6/cache/index1/size +++ /dev/null @@ -1 +0,0 @@ -512K diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu6/cache/index1/type b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu6/cache/index1/type deleted file mode 100644 index 9a53cbfa..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu6/cache/index1/type +++ /dev/null @@ -1 +0,0 @@ -Instruction diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu6/cache/index2/level b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu6/cache/index2/level deleted file mode 100644 index 0cfbf088..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu6/cache/index2/level +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu6/cache/index2/shared_cpu_map b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu6/cache/index2/shared_cpu_map deleted file mode 100644 index 341d4992..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu6/cache/index2/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000040 diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu6/cache/index2/size b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu6/cache/index2/size deleted file mode 100644 index 176f9414..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu6/cache/index2/size +++ /dev/null @@ -1 +0,0 @@ -512K diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu6/cache/index2/type b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu6/cache/index2/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu6/cache/index2/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu6/cache/index3/level b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu6/cache/index3/level deleted file mode 100644 index 00750edc..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu6/cache/index3/level +++ /dev/null @@ -1 +0,0 @@ -3 diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu6/cache/index3/shared_cpu_map b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu6/cache/index3/shared_cpu_map deleted file mode 100644 index 341d4992..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu6/cache/index3/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000040 diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu6/cache/index3/size b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu6/cache/index3/size deleted file mode 100644 index fd6858c5..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu6/cache/index3/size +++ /dev/null @@ -1 +0,0 @@ -6144K diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu6/cache/index3/type b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu6/cache/index3/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu6/cache/index3/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu6/topology/core_siblings b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu6/topology/core_siblings deleted file mode 100644 index 94fda38b..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu6/topology/core_siblings +++ /dev/null @@ -1 +0,0 @@ -000000f0 diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu6/topology/thread_siblings b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu6/topology/thread_siblings deleted file mode 100644 index 341d4992..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu6/topology/thread_siblings +++ /dev/null @@ -1 +0,0 @@ -00000040 diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu7/cache/index0/level b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu7/cache/index0/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu7/cache/index0/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu7/cache/index0/shared_cpu_map b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu7/cache/index0/shared_cpu_map deleted file mode 100644 index ae5f961d..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu7/cache/index0/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000080 diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu7/cache/index0/size b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu7/cache/index0/size deleted file mode 100644 index 176f9414..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu7/cache/index0/size +++ /dev/null @@ -1 +0,0 @@ -512K diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu7/cache/index0/type b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu7/cache/index0/type deleted file mode 100644 index 0b7088ec..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu7/cache/index0/type +++ /dev/null @@ -1 +0,0 @@ -Data diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu7/cache/index1/level b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu7/cache/index1/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu7/cache/index1/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu7/cache/index1/shared_cpu_map b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu7/cache/index1/shared_cpu_map deleted file mode 100644 index ae5f961d..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu7/cache/index1/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000080 diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu7/cache/index1/size b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu7/cache/index1/size deleted file mode 100644 index 176f9414..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu7/cache/index1/size +++ /dev/null @@ -1 +0,0 @@ -512K diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu7/cache/index1/type b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu7/cache/index1/type deleted file mode 100644 index 9a53cbfa..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu7/cache/index1/type +++ /dev/null @@ -1 +0,0 @@ -Instruction diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu7/cache/index2/level b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu7/cache/index2/level deleted file mode 100644 index 0cfbf088..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu7/cache/index2/level +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu7/cache/index2/shared_cpu_map b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu7/cache/index2/shared_cpu_map deleted file mode 100644 index ae5f961d..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu7/cache/index2/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000080 diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu7/cache/index2/size b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu7/cache/index2/size deleted file mode 100644 index 176f9414..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu7/cache/index2/size +++ /dev/null @@ -1 +0,0 @@ -512K diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu7/cache/index2/type b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu7/cache/index2/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu7/cache/index2/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu7/cache/index3/level b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu7/cache/index3/level deleted file mode 100644 index 00750edc..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu7/cache/index3/level +++ /dev/null @@ -1 +0,0 @@ -3 diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu7/cache/index3/shared_cpu_map b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu7/cache/index3/shared_cpu_map deleted file mode 100644 index ae5f961d..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu7/cache/index3/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000080 diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu7/cache/index3/size b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu7/cache/index3/size deleted file mode 100644 index fd6858c5..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu7/cache/index3/size +++ /dev/null @@ -1 +0,0 @@ -6144K diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu7/cache/index3/type b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu7/cache/index3/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu7/cache/index3/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu7/topology/core_siblings b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu7/topology/core_siblings deleted file mode 100644 index 94fda38b..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu7/topology/core_siblings +++ /dev/null @@ -1 +0,0 @@ -000000f0 diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu7/topology/thread_siblings b/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu7/topology/thread_siblings deleted file mode 100644 index ae5f961d..00000000 --- a/tests/ts/lscpu/dumps/i386-amdshanghai/sys/devices/system/cpu/cpu7/topology/thread_siblings +++ /dev/null @@ -1 +0,0 @@ -00000080 diff --git a/tests/ts/lscpu/dumps/i386-dellpe700.tar.gz b/tests/ts/lscpu/dumps/i386-dellpe700.tar.gz new file mode 100644 index 00000000..a18a7798 Binary files /dev/null and b/tests/ts/lscpu/dumps/i386-dellpe700.tar.gz differ diff --git a/tests/ts/lscpu/dumps/i386-dellpe700/proc/cpuinfo b/tests/ts/lscpu/dumps/i386-dellpe700/proc/cpuinfo deleted file mode 100644 index 5e789d1e..00000000 --- a/tests/ts/lscpu/dumps/i386-dellpe700/proc/cpuinfo +++ /dev/null @@ -1,46 +0,0 @@ -processor : 0 -vendor_id : GenuineIntel -cpu family : 15 -model : 2 -model name : Intel(R) Pentium(R) 4 CPU 3.40GHz -stepping : 9 -cpu MHz : 3391.773 -cache size : 512 KB -physical id : 0 -siblings : 2 -core id : 0 -cpu cores : 1 -fdiv_bug : no -hlt_bug : no -f00f_bug : no -coma_bug : no -fpu : yes -fpu_exception : yes -cpuid level : 2 -wp : yes -flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe cid xtpr -bogomips : 6785.61 - -processor : 1 -vendor_id : GenuineIntel -cpu family : 15 -model : 2 -model name : Intel(R) Pentium(R) 4 CPU 3.40GHz -stepping : 9 -cpu MHz : 3391.773 -cache size : 512 KB -physical id : 0 -siblings : 2 -core id : 0 -cpu cores : 1 -fdiv_bug : no -hlt_bug : no -f00f_bug : no -coma_bug : no -fpu : yes -fpu_exception : yes -cpuid level : 2 -wp : yes -flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe cid xtpr -bogomips : 6781.99 - diff --git a/tests/ts/lscpu/dumps/i386-dellpe700/sys/devices/system/cpu/cpu0/thermal_throttle/count b/tests/ts/lscpu/dumps/i386-dellpe700/sys/devices/system/cpu/cpu0/thermal_throttle/count deleted file mode 100644 index 573541ac..00000000 --- a/tests/ts/lscpu/dumps/i386-dellpe700/sys/devices/system/cpu/cpu0/thermal_throttle/count +++ /dev/null @@ -1 +0,0 @@ -0 diff --git a/tests/ts/lscpu/dumps/i386-dellpe700/sys/devices/system/cpu/cpu0/topology/core_siblings b/tests/ts/lscpu/dumps/i386-dellpe700/sys/devices/system/cpu/cpu0/topology/core_siblings deleted file mode 100644 index b9ad9ed2..00000000 --- a/tests/ts/lscpu/dumps/i386-dellpe700/sys/devices/system/cpu/cpu0/topology/core_siblings +++ /dev/null @@ -1 +0,0 @@ -00000003 diff --git a/tests/ts/lscpu/dumps/i386-dellpe700/sys/devices/system/cpu/cpu0/topology/thread_siblings b/tests/ts/lscpu/dumps/i386-dellpe700/sys/devices/system/cpu/cpu0/topology/thread_siblings deleted file mode 100644 index b9ad9ed2..00000000 --- a/tests/ts/lscpu/dumps/i386-dellpe700/sys/devices/system/cpu/cpu0/topology/thread_siblings +++ /dev/null @@ -1 +0,0 @@ -00000003 diff --git a/tests/ts/lscpu/dumps/i386-dellpe700/sys/devices/system/cpu/cpu1/thermal_throttle/count b/tests/ts/lscpu/dumps/i386-dellpe700/sys/devices/system/cpu/cpu1/thermal_throttle/count deleted file mode 100644 index 573541ac..00000000 --- a/tests/ts/lscpu/dumps/i386-dellpe700/sys/devices/system/cpu/cpu1/thermal_throttle/count +++ /dev/null @@ -1 +0,0 @@ -0 diff --git a/tests/ts/lscpu/dumps/i386-dellpe700/sys/devices/system/cpu/cpu1/topology/core_siblings b/tests/ts/lscpu/dumps/i386-dellpe700/sys/devices/system/cpu/cpu1/topology/core_siblings deleted file mode 100644 index b9ad9ed2..00000000 --- a/tests/ts/lscpu/dumps/i386-dellpe700/sys/devices/system/cpu/cpu1/topology/core_siblings +++ /dev/null @@ -1 +0,0 @@ -00000003 diff --git a/tests/ts/lscpu/dumps/i386-dellpe700/sys/devices/system/cpu/cpu1/topology/thread_siblings b/tests/ts/lscpu/dumps/i386-dellpe700/sys/devices/system/cpu/cpu1/topology/thread_siblings deleted file mode 100644 index b9ad9ed2..00000000 --- a/tests/ts/lscpu/dumps/i386-dellpe700/sys/devices/system/cpu/cpu1/topology/thread_siblings +++ /dev/null @@ -1 +0,0 @@ -00000003 diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb.tar.gz b/tests/ts/lscpu/dumps/i386-intels5000phb.tar.gz new file mode 100644 index 00000000..36c98115 Binary files /dev/null and b/tests/ts/lscpu/dumps/i386-intels5000phb.tar.gz differ diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/proc/cpuinfo b/tests/ts/lscpu/dumps/i386-intels5000phb/proc/cpuinfo deleted file mode 100644 index 9e98996c..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/proc/cpuinfo +++ /dev/null @@ -1,184 +0,0 @@ -processor : 0 -vendor_id : GenuineIntel -cpu family : 6 -model : 15 -model name : Intel(R) Xeon(R) CPU E5310 @ 1.60GHz -stepping : 7 -cpu MHz : 1596.044 -cache size : 4096 KB -physical id : 0 -siblings : 4 -core id : 0 -cpu cores : 4 -fdiv_bug : no -hlt_bug : no -f00f_bug : no -coma_bug : no -fpu : yes -fpu_exception : yes -cpuid level : 10 -wp : yes -flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe nx lm constant_tsc pni monitor ds_cpl vmx tm2 cx16 xtpr lahf_lm -bogomips : 3193.91 - -processor : 1 -vendor_id : GenuineIntel -cpu family : 6 -model : 15 -model name : Intel(R) Xeon(R) CPU E5310 @ 1.60GHz -stepping : 7 -cpu MHz : 1596.044 -cache size : 4096 KB -physical id : 0 -siblings : 4 -core id : 1 -cpu cores : 4 -fdiv_bug : no -hlt_bug : no -f00f_bug : no -coma_bug : no -fpu : yes -fpu_exception : yes -cpuid level : 10 -wp : yes -flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe nx lm constant_tsc pni monitor ds_cpl vmx tm2 cx16 xtpr lahf_lm -bogomips : 3191.87 - -processor : 2 -vendor_id : GenuineIntel -cpu family : 6 -model : 15 -model name : Intel(R) Xeon(R) CPU E5310 @ 1.60GHz -stepping : 7 -cpu MHz : 1596.044 -cache size : 4096 KB -physical id : 0 -siblings : 4 -core id : 2 -cpu cores : 4 -fdiv_bug : no -hlt_bug : no -f00f_bug : no -coma_bug : no -fpu : yes -fpu_exception : yes -cpuid level : 10 -wp : yes -flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe nx lm constant_tsc pni monitor ds_cpl vmx tm2 cx16 xtpr lahf_lm -bogomips : 3191.88 - -processor : 3 -vendor_id : GenuineIntel -cpu family : 6 -model : 15 -model name : Intel(R) Xeon(R) CPU E5310 @ 1.60GHz -stepping : 7 -cpu MHz : 1596.044 -cache size : 4096 KB -physical id : 0 -siblings : 4 -core id : 3 -cpu cores : 4 -fdiv_bug : no -hlt_bug : no -f00f_bug : no -coma_bug : no -fpu : yes -fpu_exception : yes -cpuid level : 10 -wp : yes -flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe nx lm constant_tsc pni monitor ds_cpl vmx tm2 cx16 xtpr lahf_lm -bogomips : 3191.88 - -processor : 4 -vendor_id : GenuineIntel -cpu family : 6 -model : 15 -model name : Intel(R) Xeon(R) CPU E5310 @ 1.60GHz -stepping : 7 -cpu MHz : 1596.044 -cache size : 4096 KB -physical id : 1 -siblings : 4 -core id : 0 -cpu cores : 4 -fdiv_bug : no -hlt_bug : no -f00f_bug : no -coma_bug : no -fpu : yes -fpu_exception : yes -cpuid level : 10 -wp : yes -flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe nx lm constant_tsc pni monitor ds_cpl vmx tm2 cx16 xtpr lahf_lm -bogomips : 3191.90 - -processor : 5 -vendor_id : GenuineIntel -cpu family : 6 -model : 15 -model name : Intel(R) Xeon(R) CPU E5310 @ 1.60GHz -stepping : 7 -cpu MHz : 1596.044 -cache size : 4096 KB -physical id : 1 -siblings : 4 -core id : 1 -cpu cores : 4 -fdiv_bug : no -hlt_bug : no -f00f_bug : no -coma_bug : no -fpu : yes -fpu_exception : yes -cpuid level : 10 -wp : yes -flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe nx lm constant_tsc pni monitor ds_cpl vmx tm2 cx16 xtpr lahf_lm -bogomips : 3191.90 - -processor : 6 -vendor_id : GenuineIntel -cpu family : 6 -model : 15 -model name : Intel(R) Xeon(R) CPU E5310 @ 1.60GHz -stepping : 7 -cpu MHz : 1596.044 -cache size : 4096 KB -physical id : 1 -siblings : 4 -core id : 2 -cpu cores : 4 -fdiv_bug : no -hlt_bug : no -f00f_bug : no -coma_bug : no -fpu : yes -fpu_exception : yes -cpuid level : 10 -wp : yes -flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe nx lm constant_tsc pni monitor ds_cpl vmx tm2 cx16 xtpr lahf_lm -bogomips : 3191.90 - -processor : 7 -vendor_id : GenuineIntel -cpu family : 6 -model : 15 -model name : Intel(R) Xeon(R) CPU E5310 @ 1.60GHz -stepping : 7 -cpu MHz : 1596.044 -cache size : 4096 KB -physical id : 1 -siblings : 4 -core id : 3 -cpu cores : 4 -fdiv_bug : no -hlt_bug : no -f00f_bug : no -coma_bug : no -fpu : yes -fpu_exception : yes -cpuid level : 10 -wp : yes -flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe nx lm constant_tsc pni monitor ds_cpl vmx tm2 cx16 xtpr lahf_lm -bogomips : 3191.91 - diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu0/cache/index0/level b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu0/cache/index0/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu0/cache/index0/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu0/cache/index0/shared_cpu_map b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu0/cache/index0/shared_cpu_map deleted file mode 100644 index d3476039..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu0/cache/index0/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000001 diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu0/cache/index0/size b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu0/cache/index0/size deleted file mode 100644 index 56b868b2..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu0/cache/index0/size +++ /dev/null @@ -1 +0,0 @@ -32K diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu0/cache/index0/type b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu0/cache/index0/type deleted file mode 100644 index 0b7088ec..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu0/cache/index0/type +++ /dev/null @@ -1 +0,0 @@ -Data diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu0/cache/index1/level b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu0/cache/index1/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu0/cache/index1/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu0/cache/index1/shared_cpu_map b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu0/cache/index1/shared_cpu_map deleted file mode 100644 index d3476039..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu0/cache/index1/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000001 diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu0/cache/index1/size b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu0/cache/index1/size deleted file mode 100644 index 56b868b2..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu0/cache/index1/size +++ /dev/null @@ -1 +0,0 @@ -32K diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu0/cache/index1/type b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu0/cache/index1/type deleted file mode 100644 index 9a53cbfa..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu0/cache/index1/type +++ /dev/null @@ -1 +0,0 @@ -Instruction diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu0/cache/index2/level b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu0/cache/index2/level deleted file mode 100644 index 0cfbf088..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu0/cache/index2/level +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu0/cache/index2/shared_cpu_map b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu0/cache/index2/shared_cpu_map deleted file mode 100644 index b9ad9ed2..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu0/cache/index2/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000003 diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu0/cache/index2/size b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu0/cache/index2/size deleted file mode 100644 index 6399ecd3..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu0/cache/index2/size +++ /dev/null @@ -1 +0,0 @@ -4096K diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu0/cache/index2/type b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu0/cache/index2/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu0/cache/index2/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu0/topology/core_siblings b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu0/topology/core_siblings deleted file mode 100644 index 61524e4b..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu0/topology/core_siblings +++ /dev/null @@ -1 +0,0 @@ -0000000f diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu0/topology/thread_siblings b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu0/topology/thread_siblings deleted file mode 100644 index d3476039..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu0/topology/thread_siblings +++ /dev/null @@ -1 +0,0 @@ -00000001 diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu1/cache/index0/level b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu1/cache/index0/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu1/cache/index0/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu1/cache/index0/shared_cpu_map b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu1/cache/index0/shared_cpu_map deleted file mode 100644 index 0af11c55..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu1/cache/index0/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000002 diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu1/cache/index0/size b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu1/cache/index0/size deleted file mode 100644 index 56b868b2..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu1/cache/index0/size +++ /dev/null @@ -1 +0,0 @@ -32K diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu1/cache/index0/type b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu1/cache/index0/type deleted file mode 100644 index 0b7088ec..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu1/cache/index0/type +++ /dev/null @@ -1 +0,0 @@ -Data diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu1/cache/index1/level b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu1/cache/index1/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu1/cache/index1/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu1/cache/index1/shared_cpu_map b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu1/cache/index1/shared_cpu_map deleted file mode 100644 index 0af11c55..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu1/cache/index1/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000002 diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu1/cache/index1/size b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu1/cache/index1/size deleted file mode 100644 index 56b868b2..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu1/cache/index1/size +++ /dev/null @@ -1 +0,0 @@ -32K diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu1/cache/index1/type b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu1/cache/index1/type deleted file mode 100644 index 9a53cbfa..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu1/cache/index1/type +++ /dev/null @@ -1 +0,0 @@ -Instruction diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu1/cache/index2/level b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu1/cache/index2/level deleted file mode 100644 index 0cfbf088..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu1/cache/index2/level +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu1/cache/index2/shared_cpu_map b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu1/cache/index2/shared_cpu_map deleted file mode 100644 index b9ad9ed2..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu1/cache/index2/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000003 diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu1/cache/index2/size b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu1/cache/index2/size deleted file mode 100644 index 6399ecd3..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu1/cache/index2/size +++ /dev/null @@ -1 +0,0 @@ -4096K diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu1/cache/index2/type b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu1/cache/index2/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu1/cache/index2/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu1/topology/core_siblings b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu1/topology/core_siblings deleted file mode 100644 index 61524e4b..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu1/topology/core_siblings +++ /dev/null @@ -1 +0,0 @@ -0000000f diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu1/topology/thread_siblings b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu1/topology/thread_siblings deleted file mode 100644 index 0af11c55..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu1/topology/thread_siblings +++ /dev/null @@ -1 +0,0 @@ -00000002 diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu2/cache/index0/level b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu2/cache/index0/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu2/cache/index0/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu2/cache/index0/shared_cpu_map b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu2/cache/index0/shared_cpu_map deleted file mode 100644 index 5fd34aea..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu2/cache/index0/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000004 diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu2/cache/index0/size b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu2/cache/index0/size deleted file mode 100644 index 56b868b2..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu2/cache/index0/size +++ /dev/null @@ -1 +0,0 @@ -32K diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu2/cache/index0/type b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu2/cache/index0/type deleted file mode 100644 index 0b7088ec..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu2/cache/index0/type +++ /dev/null @@ -1 +0,0 @@ -Data diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu2/cache/index1/level b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu2/cache/index1/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu2/cache/index1/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu2/cache/index1/shared_cpu_map b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu2/cache/index1/shared_cpu_map deleted file mode 100644 index 5fd34aea..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu2/cache/index1/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000004 diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu2/cache/index1/size b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu2/cache/index1/size deleted file mode 100644 index 56b868b2..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu2/cache/index1/size +++ /dev/null @@ -1 +0,0 @@ -32K diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu2/cache/index1/type b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu2/cache/index1/type deleted file mode 100644 index 9a53cbfa..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu2/cache/index1/type +++ /dev/null @@ -1 +0,0 @@ -Instruction diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu2/cache/index2/level b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu2/cache/index2/level deleted file mode 100644 index 0cfbf088..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu2/cache/index2/level +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu2/cache/index2/shared_cpu_map b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu2/cache/index2/shared_cpu_map deleted file mode 100644 index de4a3657..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu2/cache/index2/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -0000000c diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu2/cache/index2/size b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu2/cache/index2/size deleted file mode 100644 index 6399ecd3..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu2/cache/index2/size +++ /dev/null @@ -1 +0,0 @@ -4096K diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu2/cache/index2/type b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu2/cache/index2/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu2/cache/index2/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu2/topology/core_siblings b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu2/topology/core_siblings deleted file mode 100644 index 61524e4b..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu2/topology/core_siblings +++ /dev/null @@ -1 +0,0 @@ -0000000f diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu2/topology/thread_siblings b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu2/topology/thread_siblings deleted file mode 100644 index 5fd34aea..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu2/topology/thread_siblings +++ /dev/null @@ -1 +0,0 @@ -00000004 diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu3/cache/index0/level b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu3/cache/index0/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu3/cache/index0/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu3/cache/index0/shared_cpu_map b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu3/cache/index0/shared_cpu_map deleted file mode 100644 index d718dd94..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu3/cache/index0/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000008 diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu3/cache/index0/size b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu3/cache/index0/size deleted file mode 100644 index 56b868b2..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu3/cache/index0/size +++ /dev/null @@ -1 +0,0 @@ -32K diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu3/cache/index0/type b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu3/cache/index0/type deleted file mode 100644 index 0b7088ec..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu3/cache/index0/type +++ /dev/null @@ -1 +0,0 @@ -Data diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu3/cache/index1/level b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu3/cache/index1/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu3/cache/index1/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu3/cache/index1/shared_cpu_map b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu3/cache/index1/shared_cpu_map deleted file mode 100644 index d718dd94..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu3/cache/index1/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000008 diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu3/cache/index1/size b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu3/cache/index1/size deleted file mode 100644 index 56b868b2..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu3/cache/index1/size +++ /dev/null @@ -1 +0,0 @@ -32K diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu3/cache/index1/type b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu3/cache/index1/type deleted file mode 100644 index 9a53cbfa..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu3/cache/index1/type +++ /dev/null @@ -1 +0,0 @@ -Instruction diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu3/cache/index2/level b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu3/cache/index2/level deleted file mode 100644 index 0cfbf088..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu3/cache/index2/level +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu3/cache/index2/shared_cpu_map b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu3/cache/index2/shared_cpu_map deleted file mode 100644 index de4a3657..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu3/cache/index2/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -0000000c diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu3/cache/index2/size b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu3/cache/index2/size deleted file mode 100644 index 6399ecd3..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu3/cache/index2/size +++ /dev/null @@ -1 +0,0 @@ -4096K diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu3/cache/index2/type b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu3/cache/index2/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu3/cache/index2/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu3/topology/core_siblings b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu3/topology/core_siblings deleted file mode 100644 index 61524e4b..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu3/topology/core_siblings +++ /dev/null @@ -1 +0,0 @@ -0000000f diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu3/topology/thread_siblings b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu3/topology/thread_siblings deleted file mode 100644 index d718dd94..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu3/topology/thread_siblings +++ /dev/null @@ -1 +0,0 @@ -00000008 diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu4/cache/index0/level b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu4/cache/index0/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu4/cache/index0/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu4/cache/index0/shared_cpu_map b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu4/cache/index0/shared_cpu_map deleted file mode 100644 index eb708f55..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu4/cache/index0/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000010 diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu4/cache/index0/size b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu4/cache/index0/size deleted file mode 100644 index 56b868b2..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu4/cache/index0/size +++ /dev/null @@ -1 +0,0 @@ -32K diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu4/cache/index0/type b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu4/cache/index0/type deleted file mode 100644 index 0b7088ec..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu4/cache/index0/type +++ /dev/null @@ -1 +0,0 @@ -Data diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu4/cache/index1/level b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu4/cache/index1/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu4/cache/index1/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu4/cache/index1/shared_cpu_map b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu4/cache/index1/shared_cpu_map deleted file mode 100644 index eb708f55..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu4/cache/index1/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000010 diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu4/cache/index1/size b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu4/cache/index1/size deleted file mode 100644 index 56b868b2..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu4/cache/index1/size +++ /dev/null @@ -1 +0,0 @@ -32K diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu4/cache/index1/type b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu4/cache/index1/type deleted file mode 100644 index 9a53cbfa..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu4/cache/index1/type +++ /dev/null @@ -1 +0,0 @@ -Instruction diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu4/cache/index2/level b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu4/cache/index2/level deleted file mode 100644 index 0cfbf088..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu4/cache/index2/level +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu4/cache/index2/shared_cpu_map b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu4/cache/index2/shared_cpu_map deleted file mode 100644 index d2f53cb5..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu4/cache/index2/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000030 diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu4/cache/index2/size b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu4/cache/index2/size deleted file mode 100644 index 6399ecd3..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu4/cache/index2/size +++ /dev/null @@ -1 +0,0 @@ -4096K diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu4/cache/index2/type b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu4/cache/index2/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu4/cache/index2/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu4/topology/core_siblings b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu4/topology/core_siblings deleted file mode 100644 index 94fda38b..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu4/topology/core_siblings +++ /dev/null @@ -1 +0,0 @@ -000000f0 diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu4/topology/thread_siblings b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu4/topology/thread_siblings deleted file mode 100644 index eb708f55..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu4/topology/thread_siblings +++ /dev/null @@ -1 +0,0 @@ -00000010 diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu5/cache/index0/level b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu5/cache/index0/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu5/cache/index0/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu5/cache/index0/shared_cpu_map b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu5/cache/index0/shared_cpu_map deleted file mode 100644 index 827aafe1..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu5/cache/index0/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000020 diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu5/cache/index0/size b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu5/cache/index0/size deleted file mode 100644 index 56b868b2..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu5/cache/index0/size +++ /dev/null @@ -1 +0,0 @@ -32K diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu5/cache/index0/type b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu5/cache/index0/type deleted file mode 100644 index 0b7088ec..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu5/cache/index0/type +++ /dev/null @@ -1 +0,0 @@ -Data diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu5/cache/index1/level b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu5/cache/index1/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu5/cache/index1/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu5/cache/index1/shared_cpu_map b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu5/cache/index1/shared_cpu_map deleted file mode 100644 index 827aafe1..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu5/cache/index1/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000020 diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu5/cache/index1/size b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu5/cache/index1/size deleted file mode 100644 index 56b868b2..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu5/cache/index1/size +++ /dev/null @@ -1 +0,0 @@ -32K diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu5/cache/index1/type b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu5/cache/index1/type deleted file mode 100644 index 9a53cbfa..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu5/cache/index1/type +++ /dev/null @@ -1 +0,0 @@ -Instruction diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu5/cache/index2/level b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu5/cache/index2/level deleted file mode 100644 index 0cfbf088..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu5/cache/index2/level +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu5/cache/index2/shared_cpu_map b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu5/cache/index2/shared_cpu_map deleted file mode 100644 index d2f53cb5..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu5/cache/index2/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000030 diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu5/cache/index2/size b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu5/cache/index2/size deleted file mode 100644 index 6399ecd3..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu5/cache/index2/size +++ /dev/null @@ -1 +0,0 @@ -4096K diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu5/cache/index2/type b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu5/cache/index2/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu5/cache/index2/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu5/topology/core_siblings b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu5/topology/core_siblings deleted file mode 100644 index 94fda38b..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu5/topology/core_siblings +++ /dev/null @@ -1 +0,0 @@ -000000f0 diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu5/topology/thread_siblings b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu5/topology/thread_siblings deleted file mode 100644 index 827aafe1..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu5/topology/thread_siblings +++ /dev/null @@ -1 +0,0 @@ -00000020 diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu6/cache/index0/level b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu6/cache/index0/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu6/cache/index0/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu6/cache/index0/shared_cpu_map b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu6/cache/index0/shared_cpu_map deleted file mode 100644 index 341d4992..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu6/cache/index0/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000040 diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu6/cache/index0/size b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu6/cache/index0/size deleted file mode 100644 index 56b868b2..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu6/cache/index0/size +++ /dev/null @@ -1 +0,0 @@ -32K diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu6/cache/index0/type b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu6/cache/index0/type deleted file mode 100644 index 0b7088ec..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu6/cache/index0/type +++ /dev/null @@ -1 +0,0 @@ -Data diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu6/cache/index1/level b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu6/cache/index1/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu6/cache/index1/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu6/cache/index1/shared_cpu_map b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu6/cache/index1/shared_cpu_map deleted file mode 100644 index 341d4992..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu6/cache/index1/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000040 diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu6/cache/index1/size b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu6/cache/index1/size deleted file mode 100644 index 56b868b2..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu6/cache/index1/size +++ /dev/null @@ -1 +0,0 @@ -32K diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu6/cache/index1/type b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu6/cache/index1/type deleted file mode 100644 index 9a53cbfa..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu6/cache/index1/type +++ /dev/null @@ -1 +0,0 @@ -Instruction diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu6/cache/index2/level b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu6/cache/index2/level deleted file mode 100644 index 0cfbf088..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu6/cache/index2/level +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu6/cache/index2/shared_cpu_map b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu6/cache/index2/shared_cpu_map deleted file mode 100644 index dcb914a5..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu6/cache/index2/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -000000c0 diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu6/cache/index2/size b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu6/cache/index2/size deleted file mode 100644 index 6399ecd3..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu6/cache/index2/size +++ /dev/null @@ -1 +0,0 @@ -4096K diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu6/cache/index2/type b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu6/cache/index2/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu6/cache/index2/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu6/topology/core_siblings b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu6/topology/core_siblings deleted file mode 100644 index 94fda38b..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu6/topology/core_siblings +++ /dev/null @@ -1 +0,0 @@ -000000f0 diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu6/topology/thread_siblings b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu6/topology/thread_siblings deleted file mode 100644 index 341d4992..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu6/topology/thread_siblings +++ /dev/null @@ -1 +0,0 @@ -00000040 diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu7/cache/index0/level b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu7/cache/index0/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu7/cache/index0/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu7/cache/index0/shared_cpu_map b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu7/cache/index0/shared_cpu_map deleted file mode 100644 index ae5f961d..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu7/cache/index0/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000080 diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu7/cache/index0/size b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu7/cache/index0/size deleted file mode 100644 index 56b868b2..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu7/cache/index0/size +++ /dev/null @@ -1 +0,0 @@ -32K diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu7/cache/index0/type b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu7/cache/index0/type deleted file mode 100644 index 0b7088ec..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu7/cache/index0/type +++ /dev/null @@ -1 +0,0 @@ -Data diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu7/cache/index1/level b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu7/cache/index1/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu7/cache/index1/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu7/cache/index1/shared_cpu_map b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu7/cache/index1/shared_cpu_map deleted file mode 100644 index ae5f961d..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu7/cache/index1/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000080 diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu7/cache/index1/size b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu7/cache/index1/size deleted file mode 100644 index 56b868b2..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu7/cache/index1/size +++ /dev/null @@ -1 +0,0 @@ -32K diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu7/cache/index1/type b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu7/cache/index1/type deleted file mode 100644 index 9a53cbfa..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu7/cache/index1/type +++ /dev/null @@ -1 +0,0 @@ -Instruction diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu7/cache/index2/level b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu7/cache/index2/level deleted file mode 100644 index 0cfbf088..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu7/cache/index2/level +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu7/cache/index2/shared_cpu_map b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu7/cache/index2/shared_cpu_map deleted file mode 100644 index dcb914a5..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu7/cache/index2/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -000000c0 diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu7/cache/index2/size b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu7/cache/index2/size deleted file mode 100644 index 6399ecd3..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu7/cache/index2/size +++ /dev/null @@ -1 +0,0 @@ -4096K diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu7/cache/index2/type b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu7/cache/index2/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu7/cache/index2/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu7/topology/core_siblings b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu7/topology/core_siblings deleted file mode 100644 index 94fda38b..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu7/topology/core_siblings +++ /dev/null @@ -1 +0,0 @@ -000000f0 diff --git a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu7/topology/thread_siblings b/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu7/topology/thread_siblings deleted file mode 100644 index ae5f961d..00000000 --- a/tests/ts/lscpu/dumps/i386-intels5000phb/sys/devices/system/cpu/cpu7/topology/thread_siblings +++ /dev/null @@ -1 +0,0 @@ -00000080 diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn.tar.gz b/tests/ts/lscpu/dumps/ia64-hpmatterhorn.tar.gz new file mode 100644 index 00000000..b5f15165 Binary files /dev/null and b/tests/ts/lscpu/dumps/ia64-hpmatterhorn.tar.gz differ diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/proc/cpuinfo b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/proc/cpuinfo deleted file mode 100644 index 24e3f1d3..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/proc/cpuinfo +++ /dev/null @@ -1,120 +0,0 @@ -processor : 0 -vendor : GenuineIntel -arch : IA-64 -family : Itanium 2 -model : 1 -revision : 5 -archrev : 0 -features : branchlong -cpu number : 0 -cpu regs : 4 -cpu MHz : 1300.000000 -itc MHz : 1300.000000 -BogoMIPS : 1945.60 -siblings : 1 - -processor : 1 -vendor : GenuineIntel -arch : IA-64 -family : Itanium 2 -model : 1 -revision : 5 -archrev : 0 -features : branchlong -cpu number : 0 -cpu regs : 4 -cpu MHz : 1300.000000 -itc MHz : 1300.000000 -BogoMIPS : 1945.60 -siblings : 1 - -processor : 2 -vendor : GenuineIntel -arch : IA-64 -family : Itanium 2 -model : 1 -revision : 5 -archrev : 0 -features : branchlong -cpu number : 0 -cpu regs : 4 -cpu MHz : 1300.000000 -itc MHz : 1300.000000 -BogoMIPS : 1941.50 -siblings : 1 - -processor : 3 -vendor : GenuineIntel -arch : IA-64 -family : Itanium 2 -model : 1 -revision : 5 -archrev : 0 -features : branchlong -cpu number : 0 -cpu regs : 4 -cpu MHz : 1300.000000 -itc MHz : 1300.000000 -BogoMIPS : 1941.50 -siblings : 1 - -processor : 4 -vendor : GenuineIntel -arch : IA-64 -family : Itanium 2 -model : 1 -revision : 5 -archrev : 0 -features : branchlong -cpu number : 0 -cpu regs : 4 -cpu MHz : 1300.000000 -itc MHz : 1300.000000 -BogoMIPS : 1941.50 -siblings : 1 - -processor : 5 -vendor : GenuineIntel -arch : IA-64 -family : Itanium 2 -model : 1 -revision : 5 -archrev : 0 -features : branchlong -cpu number : 0 -cpu regs : 4 -cpu MHz : 1300.000000 -itc MHz : 1300.000000 -BogoMIPS : 1945.60 -siblings : 1 - -processor : 6 -vendor : GenuineIntel -arch : IA-64 -family : Itanium 2 -model : 1 -revision : 5 -archrev : 0 -features : branchlong -cpu number : 0 -cpu regs : 4 -cpu MHz : 1300.000000 -itc MHz : 1300.000000 -BogoMIPS : 1945.60 -siblings : 1 - -processor : 7 -vendor : GenuineIntel -arch : IA-64 -family : Itanium 2 -model : 1 -revision : 5 -archrev : 0 -features : branchlong -cpu number : 0 -cpu regs : 4 -cpu MHz : 1300.000000 -itc MHz : 1300.000000 -BogoMIPS : 1941.50 -siblings : 1 - diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu0/cache/index0/level b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu0/cache/index0/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu0/cache/index0/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu0/cache/index0/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu0/cache/index0/shared_cpu_map deleted file mode 100644 index 9174a4f0..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu0/cache/index0/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000001 diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu0/cache/index0/size b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu0/cache/index0/size deleted file mode 100644 index 55c7f6dc..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu0/cache/index0/size +++ /dev/null @@ -1 +0,0 @@ -16K diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu0/cache/index0/type b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu0/cache/index0/type deleted file mode 100644 index 0b7088ec..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu0/cache/index0/type +++ /dev/null @@ -1 +0,0 @@ -Data diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu0/cache/index1/level b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu0/cache/index1/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu0/cache/index1/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu0/cache/index1/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu0/cache/index1/shared_cpu_map deleted file mode 100644 index 9174a4f0..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu0/cache/index1/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000001 diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu0/cache/index1/size b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu0/cache/index1/size deleted file mode 100644 index 55c7f6dc..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu0/cache/index1/size +++ /dev/null @@ -1 +0,0 @@ -16K diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu0/cache/index1/type b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu0/cache/index1/type deleted file mode 100644 index 9a53cbfa..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu0/cache/index1/type +++ /dev/null @@ -1 +0,0 @@ -Instruction diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu0/cache/index2/level b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu0/cache/index2/level deleted file mode 100644 index 0cfbf088..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu0/cache/index2/level +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu0/cache/index2/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu0/cache/index2/shared_cpu_map deleted file mode 100644 index 9174a4f0..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu0/cache/index2/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000001 diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu0/cache/index2/size b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu0/cache/index2/size deleted file mode 100644 index 7a3f3736..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu0/cache/index2/size +++ /dev/null @@ -1 +0,0 @@ -256K diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu0/cache/index2/type b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu0/cache/index2/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu0/cache/index2/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu0/cache/index3/level b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu0/cache/index3/level deleted file mode 100644 index 00750edc..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu0/cache/index3/level +++ /dev/null @@ -1 +0,0 @@ -3 diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu0/cache/index3/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu0/cache/index3/shared_cpu_map deleted file mode 100644 index 9174a4f0..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu0/cache/index3/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000001 diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu0/cache/index3/size b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu0/cache/index3/size deleted file mode 100644 index 07eb221f..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu0/cache/index3/size +++ /dev/null @@ -1 +0,0 @@ -3072K diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu0/cache/index3/type b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu0/cache/index3/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu0/cache/index3/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu0/topology/core_siblings b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu0/topology/core_siblings deleted file mode 100644 index 9174a4f0..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu0/topology/core_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000001 diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu0/topology/thread_siblings b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu0/topology/thread_siblings deleted file mode 100644 index 9174a4f0..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu0/topology/thread_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000001 diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu1/cache/index0/level b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu1/cache/index0/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu1/cache/index0/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu1/cache/index0/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu1/cache/index0/shared_cpu_map deleted file mode 100644 index 16afa03e..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu1/cache/index0/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000002 diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu1/cache/index0/size b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu1/cache/index0/size deleted file mode 100644 index 55c7f6dc..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu1/cache/index0/size +++ /dev/null @@ -1 +0,0 @@ -16K diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu1/cache/index0/type b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu1/cache/index0/type deleted file mode 100644 index 0b7088ec..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu1/cache/index0/type +++ /dev/null @@ -1 +0,0 @@ -Data diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu1/cache/index1/level b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu1/cache/index1/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu1/cache/index1/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu1/cache/index1/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu1/cache/index1/shared_cpu_map deleted file mode 100644 index 16afa03e..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu1/cache/index1/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000002 diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu1/cache/index1/size b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu1/cache/index1/size deleted file mode 100644 index 55c7f6dc..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu1/cache/index1/size +++ /dev/null @@ -1 +0,0 @@ -16K diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu1/cache/index1/type b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu1/cache/index1/type deleted file mode 100644 index 9a53cbfa..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu1/cache/index1/type +++ /dev/null @@ -1 +0,0 @@ -Instruction diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu1/cache/index2/level b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu1/cache/index2/level deleted file mode 100644 index 0cfbf088..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu1/cache/index2/level +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu1/cache/index2/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu1/cache/index2/shared_cpu_map deleted file mode 100644 index 16afa03e..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu1/cache/index2/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000002 diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu1/cache/index2/size b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu1/cache/index2/size deleted file mode 100644 index 7a3f3736..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu1/cache/index2/size +++ /dev/null @@ -1 +0,0 @@ -256K diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu1/cache/index2/type b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu1/cache/index2/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu1/cache/index2/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu1/cache/index3/level b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu1/cache/index3/level deleted file mode 100644 index 00750edc..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu1/cache/index3/level +++ /dev/null @@ -1 +0,0 @@ -3 diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu1/cache/index3/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu1/cache/index3/shared_cpu_map deleted file mode 100644 index 16afa03e..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu1/cache/index3/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000002 diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu1/cache/index3/size b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu1/cache/index3/size deleted file mode 100644 index 07eb221f..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu1/cache/index3/size +++ /dev/null @@ -1 +0,0 @@ -3072K diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu1/cache/index3/type b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu1/cache/index3/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu1/cache/index3/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu1/topology/core_siblings b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu1/topology/core_siblings deleted file mode 100644 index 16afa03e..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu1/topology/core_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000002 diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu1/topology/thread_siblings b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu1/topology/thread_siblings deleted file mode 100644 index 16afa03e..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu1/topology/thread_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000002 diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu2/cache/index0/level b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu2/cache/index0/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu2/cache/index0/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu2/cache/index0/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu2/cache/index0/shared_cpu_map deleted file mode 100644 index 7bf74bad..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu2/cache/index0/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000004 diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu2/cache/index0/size b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu2/cache/index0/size deleted file mode 100644 index 55c7f6dc..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu2/cache/index0/size +++ /dev/null @@ -1 +0,0 @@ -16K diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu2/cache/index0/type b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu2/cache/index0/type deleted file mode 100644 index 0b7088ec..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu2/cache/index0/type +++ /dev/null @@ -1 +0,0 @@ -Data diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu2/cache/index1/level b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu2/cache/index1/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu2/cache/index1/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu2/cache/index1/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu2/cache/index1/shared_cpu_map deleted file mode 100644 index 7bf74bad..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu2/cache/index1/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000004 diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu2/cache/index1/size b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu2/cache/index1/size deleted file mode 100644 index 55c7f6dc..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu2/cache/index1/size +++ /dev/null @@ -1 +0,0 @@ -16K diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu2/cache/index1/type b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu2/cache/index1/type deleted file mode 100644 index 9a53cbfa..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu2/cache/index1/type +++ /dev/null @@ -1 +0,0 @@ -Instruction diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu2/cache/index2/level b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu2/cache/index2/level deleted file mode 100644 index 0cfbf088..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu2/cache/index2/level +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu2/cache/index2/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu2/cache/index2/shared_cpu_map deleted file mode 100644 index 7bf74bad..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu2/cache/index2/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000004 diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu2/cache/index2/size b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu2/cache/index2/size deleted file mode 100644 index 7a3f3736..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu2/cache/index2/size +++ /dev/null @@ -1 +0,0 @@ -256K diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu2/cache/index2/type b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu2/cache/index2/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu2/cache/index2/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu2/cache/index3/level b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu2/cache/index3/level deleted file mode 100644 index 00750edc..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu2/cache/index3/level +++ /dev/null @@ -1 +0,0 @@ -3 diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu2/cache/index3/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu2/cache/index3/shared_cpu_map deleted file mode 100644 index 7bf74bad..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu2/cache/index3/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000004 diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu2/cache/index3/size b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu2/cache/index3/size deleted file mode 100644 index 07eb221f..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu2/cache/index3/size +++ /dev/null @@ -1 +0,0 @@ -3072K diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu2/cache/index3/type b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu2/cache/index3/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu2/cache/index3/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu2/topology/core_siblings b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu2/topology/core_siblings deleted file mode 100644 index 7bf74bad..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu2/topology/core_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000004 diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu2/topology/thread_siblings b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu2/topology/thread_siblings deleted file mode 100644 index 7bf74bad..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu2/topology/thread_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000004 diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu3/cache/index0/level b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu3/cache/index0/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu3/cache/index0/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu3/cache/index0/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu3/cache/index0/shared_cpu_map deleted file mode 100644 index f672618b..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu3/cache/index0/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000008 diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu3/cache/index0/size b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu3/cache/index0/size deleted file mode 100644 index 55c7f6dc..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu3/cache/index0/size +++ /dev/null @@ -1 +0,0 @@ -16K diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu3/cache/index0/type b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu3/cache/index0/type deleted file mode 100644 index 0b7088ec..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu3/cache/index0/type +++ /dev/null @@ -1 +0,0 @@ -Data diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu3/cache/index1/level b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu3/cache/index1/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu3/cache/index1/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu3/cache/index1/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu3/cache/index1/shared_cpu_map deleted file mode 100644 index f672618b..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu3/cache/index1/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000008 diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu3/cache/index1/size b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu3/cache/index1/size deleted file mode 100644 index 55c7f6dc..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu3/cache/index1/size +++ /dev/null @@ -1 +0,0 @@ -16K diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu3/cache/index1/type b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu3/cache/index1/type deleted file mode 100644 index 9a53cbfa..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu3/cache/index1/type +++ /dev/null @@ -1 +0,0 @@ -Instruction diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu3/cache/index2/level b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu3/cache/index2/level deleted file mode 100644 index 0cfbf088..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu3/cache/index2/level +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu3/cache/index2/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu3/cache/index2/shared_cpu_map deleted file mode 100644 index f672618b..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu3/cache/index2/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000008 diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu3/cache/index2/size b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu3/cache/index2/size deleted file mode 100644 index 7a3f3736..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu3/cache/index2/size +++ /dev/null @@ -1 +0,0 @@ -256K diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu3/cache/index2/type b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu3/cache/index2/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu3/cache/index2/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu3/cache/index3/level b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu3/cache/index3/level deleted file mode 100644 index 00750edc..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu3/cache/index3/level +++ /dev/null @@ -1 +0,0 @@ -3 diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu3/cache/index3/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu3/cache/index3/shared_cpu_map deleted file mode 100644 index f672618b..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu3/cache/index3/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000008 diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu3/cache/index3/size b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu3/cache/index3/size deleted file mode 100644 index 07eb221f..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu3/cache/index3/size +++ /dev/null @@ -1 +0,0 @@ -3072K diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu3/cache/index3/type b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu3/cache/index3/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu3/cache/index3/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu3/topology/core_siblings b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu3/topology/core_siblings deleted file mode 100644 index f672618b..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu3/topology/core_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000008 diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu3/topology/thread_siblings b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu3/topology/thread_siblings deleted file mode 100644 index f672618b..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu3/topology/thread_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000008 diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu4/cache/index0/level b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu4/cache/index0/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu4/cache/index0/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu4/cache/index0/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu4/cache/index0/shared_cpu_map deleted file mode 100644 index 9e32549b..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu4/cache/index0/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000010 diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu4/cache/index0/size b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu4/cache/index0/size deleted file mode 100644 index 55c7f6dc..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu4/cache/index0/size +++ /dev/null @@ -1 +0,0 @@ -16K diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu4/cache/index0/type b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu4/cache/index0/type deleted file mode 100644 index 0b7088ec..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu4/cache/index0/type +++ /dev/null @@ -1 +0,0 @@ -Data diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu4/cache/index1/level b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu4/cache/index1/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu4/cache/index1/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu4/cache/index1/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu4/cache/index1/shared_cpu_map deleted file mode 100644 index 9e32549b..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu4/cache/index1/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000010 diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu4/cache/index1/size b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu4/cache/index1/size deleted file mode 100644 index 55c7f6dc..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu4/cache/index1/size +++ /dev/null @@ -1 +0,0 @@ -16K diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu4/cache/index1/type b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu4/cache/index1/type deleted file mode 100644 index 9a53cbfa..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu4/cache/index1/type +++ /dev/null @@ -1 +0,0 @@ -Instruction diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu4/cache/index2/level b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu4/cache/index2/level deleted file mode 100644 index 0cfbf088..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu4/cache/index2/level +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu4/cache/index2/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu4/cache/index2/shared_cpu_map deleted file mode 100644 index 9e32549b..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu4/cache/index2/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000010 diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu4/cache/index2/size b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu4/cache/index2/size deleted file mode 100644 index 7a3f3736..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu4/cache/index2/size +++ /dev/null @@ -1 +0,0 @@ -256K diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu4/cache/index2/type b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu4/cache/index2/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu4/cache/index2/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu4/cache/index3/level b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu4/cache/index3/level deleted file mode 100644 index 00750edc..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu4/cache/index3/level +++ /dev/null @@ -1 +0,0 @@ -3 diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu4/cache/index3/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu4/cache/index3/shared_cpu_map deleted file mode 100644 index 9e32549b..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu4/cache/index3/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000010 diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu4/cache/index3/size b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu4/cache/index3/size deleted file mode 100644 index 07eb221f..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu4/cache/index3/size +++ /dev/null @@ -1 +0,0 @@ -3072K diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu4/cache/index3/type b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu4/cache/index3/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu4/cache/index3/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu4/topology/core_siblings b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu4/topology/core_siblings deleted file mode 100644 index 9e32549b..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu4/topology/core_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000010 diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu4/topology/thread_siblings b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu4/topology/thread_siblings deleted file mode 100644 index 9e32549b..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu4/topology/thread_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000010 diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu5/cache/index0/level b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu5/cache/index0/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu5/cache/index0/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu5/cache/index0/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu5/cache/index0/shared_cpu_map deleted file mode 100644 index ba67c0ef..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu5/cache/index0/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000020 diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu5/cache/index0/size b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu5/cache/index0/size deleted file mode 100644 index 55c7f6dc..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu5/cache/index0/size +++ /dev/null @@ -1 +0,0 @@ -16K diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu5/cache/index0/type b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu5/cache/index0/type deleted file mode 100644 index 0b7088ec..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu5/cache/index0/type +++ /dev/null @@ -1 +0,0 @@ -Data diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu5/cache/index1/level b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu5/cache/index1/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu5/cache/index1/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu5/cache/index1/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu5/cache/index1/shared_cpu_map deleted file mode 100644 index ba67c0ef..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu5/cache/index1/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000020 diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu5/cache/index1/size b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu5/cache/index1/size deleted file mode 100644 index 55c7f6dc..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu5/cache/index1/size +++ /dev/null @@ -1 +0,0 @@ -16K diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu5/cache/index1/type b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu5/cache/index1/type deleted file mode 100644 index 9a53cbfa..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu5/cache/index1/type +++ /dev/null @@ -1 +0,0 @@ -Instruction diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu5/cache/index2/level b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu5/cache/index2/level deleted file mode 100644 index 0cfbf088..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu5/cache/index2/level +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu5/cache/index2/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu5/cache/index2/shared_cpu_map deleted file mode 100644 index ba67c0ef..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu5/cache/index2/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000020 diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu5/cache/index2/size b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu5/cache/index2/size deleted file mode 100644 index 7a3f3736..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu5/cache/index2/size +++ /dev/null @@ -1 +0,0 @@ -256K diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu5/cache/index2/type b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu5/cache/index2/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu5/cache/index2/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu5/cache/index3/level b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu5/cache/index3/level deleted file mode 100644 index 00750edc..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu5/cache/index3/level +++ /dev/null @@ -1 +0,0 @@ -3 diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu5/cache/index3/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu5/cache/index3/shared_cpu_map deleted file mode 100644 index ba67c0ef..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu5/cache/index3/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000020 diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu5/cache/index3/size b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu5/cache/index3/size deleted file mode 100644 index 07eb221f..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu5/cache/index3/size +++ /dev/null @@ -1 +0,0 @@ -3072K diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu5/cache/index3/type b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu5/cache/index3/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu5/cache/index3/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu5/topology/core_siblings b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu5/topology/core_siblings deleted file mode 100644 index ba67c0ef..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu5/topology/core_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000020 diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu5/topology/thread_siblings b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu5/topology/thread_siblings deleted file mode 100644 index ba67c0ef..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu5/topology/thread_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000020 diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu6/cache/index0/level b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu6/cache/index0/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu6/cache/index0/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu6/cache/index0/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu6/cache/index0/shared_cpu_map deleted file mode 100644 index 90570988..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu6/cache/index0/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000040 diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu6/cache/index0/size b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu6/cache/index0/size deleted file mode 100644 index 55c7f6dc..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu6/cache/index0/size +++ /dev/null @@ -1 +0,0 @@ -16K diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu6/cache/index0/type b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu6/cache/index0/type deleted file mode 100644 index 0b7088ec..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu6/cache/index0/type +++ /dev/null @@ -1 +0,0 @@ -Data diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu6/cache/index1/level b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu6/cache/index1/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu6/cache/index1/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu6/cache/index1/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu6/cache/index1/shared_cpu_map deleted file mode 100644 index 90570988..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu6/cache/index1/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000040 diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu6/cache/index1/size b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu6/cache/index1/size deleted file mode 100644 index 55c7f6dc..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu6/cache/index1/size +++ /dev/null @@ -1 +0,0 @@ -16K diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu6/cache/index1/type b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu6/cache/index1/type deleted file mode 100644 index 9a53cbfa..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu6/cache/index1/type +++ /dev/null @@ -1 +0,0 @@ -Instruction diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu6/cache/index2/level b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu6/cache/index2/level deleted file mode 100644 index 0cfbf088..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu6/cache/index2/level +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu6/cache/index2/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu6/cache/index2/shared_cpu_map deleted file mode 100644 index 90570988..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu6/cache/index2/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000040 diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu6/cache/index2/size b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu6/cache/index2/size deleted file mode 100644 index 7a3f3736..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu6/cache/index2/size +++ /dev/null @@ -1 +0,0 @@ -256K diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu6/cache/index2/type b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu6/cache/index2/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu6/cache/index2/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu6/cache/index3/level b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu6/cache/index3/level deleted file mode 100644 index 00750edc..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu6/cache/index3/level +++ /dev/null @@ -1 +0,0 @@ -3 diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu6/cache/index3/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu6/cache/index3/shared_cpu_map deleted file mode 100644 index 90570988..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu6/cache/index3/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000040 diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu6/cache/index3/size b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu6/cache/index3/size deleted file mode 100644 index 07eb221f..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu6/cache/index3/size +++ /dev/null @@ -1 +0,0 @@ -3072K diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu6/cache/index3/type b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu6/cache/index3/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu6/cache/index3/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu6/topology/core_siblings b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu6/topology/core_siblings deleted file mode 100644 index 90570988..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu6/topology/core_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000040 diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu6/topology/thread_siblings b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu6/topology/thread_siblings deleted file mode 100644 index 90570988..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu6/topology/thread_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000040 diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu7/cache/index0/level b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu7/cache/index0/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu7/cache/index0/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu7/cache/index0/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu7/cache/index0/shared_cpu_map deleted file mode 100644 index d0710cdc..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu7/cache/index0/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000080 diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu7/cache/index0/size b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu7/cache/index0/size deleted file mode 100644 index 55c7f6dc..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu7/cache/index0/size +++ /dev/null @@ -1 +0,0 @@ -16K diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu7/cache/index0/type b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu7/cache/index0/type deleted file mode 100644 index 0b7088ec..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu7/cache/index0/type +++ /dev/null @@ -1 +0,0 @@ -Data diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu7/cache/index1/level b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu7/cache/index1/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu7/cache/index1/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu7/cache/index1/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu7/cache/index1/shared_cpu_map deleted file mode 100644 index d0710cdc..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu7/cache/index1/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000080 diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu7/cache/index1/size b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu7/cache/index1/size deleted file mode 100644 index 55c7f6dc..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu7/cache/index1/size +++ /dev/null @@ -1 +0,0 @@ -16K diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu7/cache/index1/type b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu7/cache/index1/type deleted file mode 100644 index 9a53cbfa..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu7/cache/index1/type +++ /dev/null @@ -1 +0,0 @@ -Instruction diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu7/cache/index2/level b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu7/cache/index2/level deleted file mode 100644 index 0cfbf088..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu7/cache/index2/level +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu7/cache/index2/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu7/cache/index2/shared_cpu_map deleted file mode 100644 index d0710cdc..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu7/cache/index2/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000080 diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu7/cache/index2/size b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu7/cache/index2/size deleted file mode 100644 index 7a3f3736..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu7/cache/index2/size +++ /dev/null @@ -1 +0,0 @@ -256K diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu7/cache/index2/type b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu7/cache/index2/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu7/cache/index2/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu7/cache/index3/level b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu7/cache/index3/level deleted file mode 100644 index 00750edc..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu7/cache/index3/level +++ /dev/null @@ -1 +0,0 @@ -3 diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu7/cache/index3/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu7/cache/index3/shared_cpu_map deleted file mode 100644 index d0710cdc..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu7/cache/index3/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000080 diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu7/cache/index3/size b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu7/cache/index3/size deleted file mode 100644 index 07eb221f..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu7/cache/index3/size +++ /dev/null @@ -1 +0,0 @@ -3072K diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu7/cache/index3/type b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu7/cache/index3/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu7/cache/index3/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu7/topology/core_siblings b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu7/topology/core_siblings deleted file mode 100644 index d0710cdc..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu7/topology/core_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000080 diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu7/topology/thread_siblings b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu7/topology/thread_siblings deleted file mode 100644 index d0710cdc..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/cpu/cpu7/topology/thread_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000080 diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/node/node0/cpu4 b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/node/node0/cpu4 deleted file mode 100644 index 3bbc86e4..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/node/node0/cpu4 +++ /dev/null @@ -1 +0,0 @@ -../../../../devices/system/cpu/cpu4 \ No newline at end of file diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/node/node0/cpu5 b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/node/node0/cpu5 deleted file mode 100644 index 226ac758..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/node/node0/cpu5 +++ /dev/null @@ -1 +0,0 @@ -../../../../devices/system/cpu/cpu5 \ No newline at end of file diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/node/node0/cpu6 b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/node/node0/cpu6 deleted file mode 100644 index 1fae7b06..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/node/node0/cpu6 +++ /dev/null @@ -1 +0,0 @@ -../../../../devices/system/cpu/cpu6 \ No newline at end of file diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/node/node0/cpu7 b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/node/node0/cpu7 deleted file mode 100644 index 942f0f5d..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/node/node0/cpu7 +++ /dev/null @@ -1 +0,0 @@ -../../../../devices/system/cpu/cpu7 \ No newline at end of file diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/node/node0/cpumap b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/node/node0/cpumap deleted file mode 100644 index 2482bd59..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/node/node0/cpumap +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,000000f0 diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/node/node1/cpu0 b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/node/node1/cpu0 deleted file mode 100644 index a8c6fc85..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/node/node1/cpu0 +++ /dev/null @@ -1 +0,0 @@ -../../../../devices/system/cpu/cpu0 \ No newline at end of file diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/node/node1/cpu1 b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/node/node1/cpu1 deleted file mode 100644 index a4064281..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/node/node1/cpu1 +++ /dev/null @@ -1 +0,0 @@ -../../../../devices/system/cpu/cpu1 \ No newline at end of file diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/node/node1/cpu2 b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/node/node1/cpu2 deleted file mode 100644 index 782bdd65..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/node/node1/cpu2 +++ /dev/null @@ -1 +0,0 @@ -../../../../devices/system/cpu/cpu2 \ No newline at end of file diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/node/node1/cpu3 b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/node/node1/cpu3 deleted file mode 100644 index ff189f54..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/node/node1/cpu3 +++ /dev/null @@ -1 +0,0 @@ -../../../../devices/system/cpu/cpu3 \ No newline at end of file diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/node/node1/cpumap b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/node/node1/cpumap deleted file mode 100644 index 446e2566..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/node/node1/cpumap +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,0000000f diff --git a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/node/node2/cpumap b/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/node/node2/cpumap deleted file mode 100644 index 2efe07b8..00000000 --- a/tests/ts/lscpu/dumps/ia64-hpmatterhorn/sys/devices/system/node/node2/cpumap +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000 diff --git a/tests/ts/lscpu/dumps/ia64-hprx1620.tar.gz b/tests/ts/lscpu/dumps/ia64-hprx1620.tar.gz new file mode 100644 index 00000000..37bcb17d Binary files /dev/null and b/tests/ts/lscpu/dumps/ia64-hprx1620.tar.gz differ diff --git a/tests/ts/lscpu/dumps/ia64-hprx1620/proc/cpuinfo b/tests/ts/lscpu/dumps/ia64-hprx1620/proc/cpuinfo deleted file mode 100644 index 1f54d464..00000000 --- a/tests/ts/lscpu/dumps/ia64-hprx1620/proc/cpuinfo +++ /dev/null @@ -1,30 +0,0 @@ -processor : 0 -vendor : GenuineIntel -arch : IA-64 -family : Itanium 2 -model : 2 -revision : 1 -archrev : 0 -features : branchlong -cpu number : 0 -cpu regs : 4 -cpu MHz : 1599.000967 -itc MHz : 1599.967674 -BogoMIPS : 2392.06 -siblings : 1 - -processor : 1 -vendor : GenuineIntel -arch : IA-64 -family : Itanium 2 -model : 2 -revision : 1 -archrev : 0 -features : branchlong -cpu number : 0 -cpu regs : 4 -cpu MHz : 1599.000967 -itc MHz : 1599.967674 -BogoMIPS : 2392.06 -siblings : 1 - diff --git a/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu0/cache/index0/level b/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu0/cache/index0/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu0/cache/index0/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu0/cache/index0/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu0/cache/index0/shared_cpu_map deleted file mode 100644 index 9174a4f0..00000000 --- a/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu0/cache/index0/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000001 diff --git a/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu0/cache/index0/size b/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu0/cache/index0/size deleted file mode 100644 index 55c7f6dc..00000000 --- a/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu0/cache/index0/size +++ /dev/null @@ -1 +0,0 @@ -16K diff --git a/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu0/cache/index0/type b/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu0/cache/index0/type deleted file mode 100644 index 0b7088ec..00000000 --- a/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu0/cache/index0/type +++ /dev/null @@ -1 +0,0 @@ -Data diff --git a/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu0/cache/index1/level b/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu0/cache/index1/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu0/cache/index1/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu0/cache/index1/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu0/cache/index1/shared_cpu_map deleted file mode 100644 index 9174a4f0..00000000 --- a/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu0/cache/index1/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000001 diff --git a/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu0/cache/index1/size b/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu0/cache/index1/size deleted file mode 100644 index 55c7f6dc..00000000 --- a/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu0/cache/index1/size +++ /dev/null @@ -1 +0,0 @@ -16K diff --git a/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu0/cache/index1/type b/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu0/cache/index1/type deleted file mode 100644 index 9a53cbfa..00000000 --- a/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu0/cache/index1/type +++ /dev/null @@ -1 +0,0 @@ -Instruction diff --git a/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu0/cache/index2/level b/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu0/cache/index2/level deleted file mode 100644 index 0cfbf088..00000000 --- a/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu0/cache/index2/level +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu0/cache/index2/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu0/cache/index2/shared_cpu_map deleted file mode 100644 index 9174a4f0..00000000 --- a/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu0/cache/index2/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000001 diff --git a/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu0/cache/index2/size b/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu0/cache/index2/size deleted file mode 100644 index 7a3f3736..00000000 --- a/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu0/cache/index2/size +++ /dev/null @@ -1 +0,0 @@ -256K diff --git a/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu0/cache/index2/type b/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu0/cache/index2/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu0/cache/index2/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu0/cache/index3/level b/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu0/cache/index3/level deleted file mode 100644 index 00750edc..00000000 --- a/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu0/cache/index3/level +++ /dev/null @@ -1 +0,0 @@ -3 diff --git a/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu0/cache/index3/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu0/cache/index3/shared_cpu_map deleted file mode 100644 index 9174a4f0..00000000 --- a/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu0/cache/index3/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000001 diff --git a/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu0/cache/index3/size b/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu0/cache/index3/size deleted file mode 100644 index 07eb221f..00000000 --- a/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu0/cache/index3/size +++ /dev/null @@ -1 +0,0 @@ -3072K diff --git a/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu0/cache/index3/type b/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu0/cache/index3/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu0/cache/index3/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu0/topology/core_siblings b/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu0/topology/core_siblings deleted file mode 100644 index 9174a4f0..00000000 --- a/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu0/topology/core_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000001 diff --git a/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu0/topology/thread_siblings b/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu0/topology/thread_siblings deleted file mode 100644 index 9174a4f0..00000000 --- a/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu0/topology/thread_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000001 diff --git a/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu1/cache/index0/level b/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu1/cache/index0/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu1/cache/index0/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu1/cache/index0/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu1/cache/index0/shared_cpu_map deleted file mode 100644 index 16afa03e..00000000 --- a/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu1/cache/index0/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000002 diff --git a/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu1/cache/index0/size b/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu1/cache/index0/size deleted file mode 100644 index 55c7f6dc..00000000 --- a/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu1/cache/index0/size +++ /dev/null @@ -1 +0,0 @@ -16K diff --git a/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu1/cache/index0/type b/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu1/cache/index0/type deleted file mode 100644 index 0b7088ec..00000000 --- a/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu1/cache/index0/type +++ /dev/null @@ -1 +0,0 @@ -Data diff --git a/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu1/cache/index1/level b/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu1/cache/index1/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu1/cache/index1/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu1/cache/index1/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu1/cache/index1/shared_cpu_map deleted file mode 100644 index 16afa03e..00000000 --- a/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu1/cache/index1/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000002 diff --git a/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu1/cache/index1/size b/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu1/cache/index1/size deleted file mode 100644 index 55c7f6dc..00000000 --- a/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu1/cache/index1/size +++ /dev/null @@ -1 +0,0 @@ -16K diff --git a/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu1/cache/index1/type b/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu1/cache/index1/type deleted file mode 100644 index 9a53cbfa..00000000 --- a/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu1/cache/index1/type +++ /dev/null @@ -1 +0,0 @@ -Instruction diff --git a/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu1/cache/index2/level b/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu1/cache/index2/level deleted file mode 100644 index 0cfbf088..00000000 --- a/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu1/cache/index2/level +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu1/cache/index2/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu1/cache/index2/shared_cpu_map deleted file mode 100644 index 16afa03e..00000000 --- a/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu1/cache/index2/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000002 diff --git a/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu1/cache/index2/size b/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu1/cache/index2/size deleted file mode 100644 index 7a3f3736..00000000 --- a/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu1/cache/index2/size +++ /dev/null @@ -1 +0,0 @@ -256K diff --git a/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu1/cache/index2/type b/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu1/cache/index2/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu1/cache/index2/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu1/cache/index3/level b/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu1/cache/index3/level deleted file mode 100644 index 00750edc..00000000 --- a/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu1/cache/index3/level +++ /dev/null @@ -1 +0,0 @@ -3 diff --git a/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu1/cache/index3/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu1/cache/index3/shared_cpu_map deleted file mode 100644 index 16afa03e..00000000 --- a/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu1/cache/index3/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000002 diff --git a/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu1/cache/index3/size b/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu1/cache/index3/size deleted file mode 100644 index 07eb221f..00000000 --- a/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu1/cache/index3/size +++ /dev/null @@ -1 +0,0 @@ -3072K diff --git a/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu1/cache/index3/type b/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu1/cache/index3/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu1/cache/index3/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu1/topology/core_siblings b/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu1/topology/core_siblings deleted file mode 100644 index 16afa03e..00000000 --- a/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu1/topology/core_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000002 diff --git a/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu1/topology/thread_siblings b/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu1/topology/thread_siblings deleted file mode 100644 index 16afa03e..00000000 --- a/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/cpu/cpu1/topology/thread_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000002 diff --git a/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/node/node0/cpu0 b/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/node/node0/cpu0 deleted file mode 100644 index a8c6fc85..00000000 --- a/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/node/node0/cpu0 +++ /dev/null @@ -1 +0,0 @@ -../../../../devices/system/cpu/cpu0 \ No newline at end of file diff --git a/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/node/node0/cpu1 b/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/node/node0/cpu1 deleted file mode 100644 index a4064281..00000000 --- a/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/node/node0/cpu1 +++ /dev/null @@ -1 +0,0 @@ -../../../../devices/system/cpu/cpu1 \ No newline at end of file diff --git a/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/node/node0/cpumap b/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/node/node0/cpumap deleted file mode 100644 index 9bac1436..00000000 --- a/tests/ts/lscpu/dumps/ia64-hprx1620/sys/devices/system/node/node0/cpumap +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000003 diff --git a/tests/ts/lscpu/dumps/ia64-pg0.tar.gz b/tests/ts/lscpu/dumps/ia64-pg0.tar.gz new file mode 100644 index 00000000..f30d792d Binary files /dev/null and b/tests/ts/lscpu/dumps/ia64-pg0.tar.gz differ diff --git a/tests/ts/lscpu/dumps/ia64-pg0/proc/cpuinfo b/tests/ts/lscpu/dumps/ia64-pg0/proc/cpuinfo deleted file mode 100644 index a07d8eab..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/proc/cpuinfo +++ /dev/null @@ -1,288 +0,0 @@ -processor : 0 -vendor : GenuineIntel -arch : IA-64 -family : Itanium 2 -model : 0 -revision : 5 -archrev : 0 -features : branchlong, 16-byte atomic ops -cpu number : 0 -cpu regs : 4 -cpu MHz : 1418.000227 -itc MHz : 399.999999 -BogoMIPS : 2834.43 -siblings : 2 -physical id: 512 -core id : 0 -thread id : 0 - -processor : 1 -vendor : GenuineIntel -arch : IA-64 -family : Itanium 2 -model : 0 -revision : 5 -archrev : 0 -features : branchlong, 16-byte atomic ops -cpu number : 0 -cpu regs : 4 -cpu MHz : 1418.000227 -itc MHz : 399.999999 -BogoMIPS : 2834.43 -siblings : 2 -physical id: 512 -core id : 1 -thread id : 0 - -processor : 2 -vendor : GenuineIntel -arch : IA-64 -family : Itanium 2 -model : 0 -revision : 5 -archrev : 0 -features : branchlong, 16-byte atomic ops -cpu number : 0 -cpu regs : 4 -cpu MHz : 1418.000227 -itc MHz : 399.999999 -BogoMIPS : 2834.43 -siblings : 2 -physical id: 131587 -core id : 0 -thread id : 0 - -processor : 3 -vendor : GenuineIntel -arch : IA-64 -family : Itanium 2 -model : 0 -revision : 5 -archrev : 0 -features : branchlong, 16-byte atomic ops -cpu number : 0 -cpu regs : 4 -cpu MHz : 1418.000227 -itc MHz : 399.999999 -BogoMIPS : 2834.43 -siblings : 2 -physical id: 131587 -core id : 1 -thread id : 0 - -processor : 4 -vendor : GenuineIntel -arch : IA-64 -family : Itanium 2 -model : 0 -revision : 5 -archrev : 0 -features : branchlong, 16-byte atomic ops -cpu number : 0 -cpu regs : 4 -cpu MHz : 1418.000227 -itc MHz : 399.999999 -BogoMIPS : 2834.43 -siblings : 2 -physical id: 8389120 -core id : 0 -thread id : 0 - -processor : 5 -vendor : GenuineIntel -arch : IA-64 -family : Itanium 2 -model : 0 -revision : 5 -archrev : 0 -features : branchlong, 16-byte atomic ops -cpu number : 0 -cpu regs : 4 -cpu MHz : 1418.000227 -itc MHz : 399.999999 -BogoMIPS : 2834.43 -siblings : 2 -physical id: 8389120 -core id : 1 -thread id : 0 - -processor : 6 -vendor : GenuineIntel -arch : IA-64 -family : Itanium 2 -model : 0 -revision : 5 -archrev : 0 -features : branchlong, 16-byte atomic ops -cpu number : 0 -cpu regs : 4 -cpu MHz : 1418.000227 -itc MHz : 399.999999 -BogoMIPS : 2842.62 -siblings : 2 -physical id: 8520195 -core id : 0 -thread id : 0 - -processor : 7 -vendor : GenuineIntel -arch : IA-64 -family : Itanium 2 -model : 0 -revision : 5 -archrev : 0 -features : branchlong, 16-byte atomic ops -cpu number : 0 -cpu regs : 4 -cpu MHz : 1418.000227 -itc MHz : 399.999999 -BogoMIPS : 2834.43 -siblings : 2 -physical id: 8520195 -core id : 1 -thread id : 0 - -processor : 8 -vendor : GenuineIntel -arch : IA-64 -family : Itanium 2 -model : 0 -revision : 5 -archrev : 0 -features : branchlong, 16-byte atomic ops -cpu number : 0 -cpu regs : 4 -cpu MHz : 1418.000227 -itc MHz : 399.999999 -BogoMIPS : 2834.43 -siblings : 2 -physical id: 1024 -core id : 0 -thread id : 0 - -processor : 9 -vendor : GenuineIntel -arch : IA-64 -family : Itanium 2 -model : 0 -revision : 5 -archrev : 0 -features : branchlong, 16-byte atomic ops -cpu number : 0 -cpu regs : 4 -cpu MHz : 1418.000227 -itc MHz : 399.999999 -BogoMIPS : 2834.43 -siblings : 2 -physical id: 1024 -core id : 1 -thread id : 0 - -processor : 10 -vendor : GenuineIntel -arch : IA-64 -family : Itanium 2 -model : 0 -revision : 5 -archrev : 0 -features : branchlong, 16-byte atomic ops -cpu number : 0 -cpu regs : 4 -cpu MHz : 1418.000227 -itc MHz : 399.999999 -BogoMIPS : 2834.43 -siblings : 2 -physical id: 132099 -core id : 0 -thread id : 0 - -processor : 11 -vendor : GenuineIntel -arch : IA-64 -family : Itanium 2 -model : 0 -revision : 5 -archrev : 0 -features : branchlong, 16-byte atomic ops -cpu number : 0 -cpu regs : 4 -cpu MHz : 1418.000227 -itc MHz : 399.999999 -BogoMIPS : 2834.43 -siblings : 2 -physical id: 132099 -core id : 1 -thread id : 0 - -processor : 12 -vendor : GenuineIntel -arch : IA-64 -family : Itanium 2 -model : 0 -revision : 5 -archrev : 0 -features : branchlong, 16-byte atomic ops -cpu number : 0 -cpu regs : 4 -cpu MHz : 1418.000227 -itc MHz : 399.999999 -BogoMIPS : 2834.43 -siblings : 2 -physical id: 8389632 -core id : 0 -thread id : 0 - -processor : 13 -vendor : GenuineIntel -arch : IA-64 -family : Itanium 2 -model : 0 -revision : 5 -archrev : 0 -features : branchlong, 16-byte atomic ops -cpu number : 0 -cpu regs : 4 -cpu MHz : 1418.000227 -itc MHz : 399.999999 -BogoMIPS : 2834.43 -siblings : 2 -physical id: 8389632 -core id : 1 -thread id : 0 - -processor : 14 -vendor : GenuineIntel -arch : IA-64 -family : Itanium 2 -model : 0 -revision : 5 -archrev : 0 -features : branchlong, 16-byte atomic ops -cpu number : 0 -cpu regs : 4 -cpu MHz : 1418.000227 -itc MHz : 399.999999 -BogoMIPS : 2834.43 -siblings : 2 -physical id: 8520707 -core id : 0 -thread id : 0 - -processor : 15 -vendor : GenuineIntel -arch : IA-64 -family : Itanium 2 -model : 0 -revision : 5 -archrev : 0 -features : branchlong, 16-byte atomic ops -cpu number : 0 -cpu regs : 4 -cpu MHz : 1418.000227 -itc MHz : 399.999999 -BogoMIPS : 2834.43 -siblings : 2 -physical id: 8520707 -core id : 1 -thread id : 0 - diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/cache/index0/level b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/cache/index0/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/cache/index0/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/cache/index0/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/cache/index0/shared_cpu_map deleted file mode 100644 index 9174a4f0..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/cache/index0/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000001 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/cache/index0/size b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/cache/index0/size deleted file mode 100644 index 55c7f6dc..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/cache/index0/size +++ /dev/null @@ -1 +0,0 @@ -16K diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/cache/index0/type b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/cache/index0/type deleted file mode 100644 index 0b7088ec..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/cache/index0/type +++ /dev/null @@ -1 +0,0 @@ -Data diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/cache/index1/level b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/cache/index1/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/cache/index1/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/cache/index1/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/cache/index1/shared_cpu_map deleted file mode 100644 index 9174a4f0..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/cache/index1/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000001 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/cache/index1/size b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/cache/index1/size deleted file mode 100644 index 55c7f6dc..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/cache/index1/size +++ /dev/null @@ -1 +0,0 @@ -16K diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/cache/index1/type b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/cache/index1/type deleted file mode 100644 index 9a53cbfa..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/cache/index1/type +++ /dev/null @@ -1 +0,0 @@ -Instruction diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/cache/index2/level b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/cache/index2/level deleted file mode 100644 index 0cfbf088..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/cache/index2/level +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/cache/index2/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/cache/index2/shared_cpu_map deleted file mode 100644 index 9174a4f0..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/cache/index2/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000001 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/cache/index2/size b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/cache/index2/size deleted file mode 100644 index 7a3f3736..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/cache/index2/size +++ /dev/null @@ -1 +0,0 @@ -256K diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/cache/index2/type b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/cache/index2/type deleted file mode 100644 index 0b7088ec..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/cache/index2/type +++ /dev/null @@ -1 +0,0 @@ -Data diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/cache/index3/level b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/cache/index3/level deleted file mode 100644 index 0cfbf088..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/cache/index3/level +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/cache/index3/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/cache/index3/shared_cpu_map deleted file mode 100644 index 2efe07b8..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/cache/index3/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/cache/index3/size b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/cache/index3/size deleted file mode 100644 index 94c87d3e..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/cache/index3/size +++ /dev/null @@ -1 +0,0 @@ -1024K diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/cache/index3/type b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/cache/index3/type deleted file mode 100644 index 9a53cbfa..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/cache/index3/type +++ /dev/null @@ -1 +0,0 @@ -Instruction diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/cache/index4/level b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/cache/index4/level deleted file mode 100644 index 00750edc..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/cache/index4/level +++ /dev/null @@ -1 +0,0 @@ -3 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/cache/index4/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/cache/index4/shared_cpu_map deleted file mode 100644 index 2efe07b8..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/cache/index4/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/cache/index4/size b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/cache/index4/size deleted file mode 100644 index fd6858c5..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/cache/index4/size +++ /dev/null @@ -1 +0,0 @@ -6144K diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/cache/index4/type b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/cache/index4/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/cache/index4/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/topology/core_siblings b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/topology/core_siblings deleted file mode 100644 index 9bac1436..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/topology/core_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000003 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/topology/thread_siblings b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/topology/thread_siblings deleted file mode 100644 index 9174a4f0..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu0/topology/thread_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000001 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/cache/index0/level b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/cache/index0/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/cache/index0/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/cache/index0/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/cache/index0/shared_cpu_map deleted file mode 100644 index 16afa03e..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/cache/index0/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000002 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/cache/index0/size b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/cache/index0/size deleted file mode 100644 index 55c7f6dc..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/cache/index0/size +++ /dev/null @@ -1 +0,0 @@ -16K diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/cache/index0/type b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/cache/index0/type deleted file mode 100644 index 0b7088ec..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/cache/index0/type +++ /dev/null @@ -1 +0,0 @@ -Data diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/cache/index1/level b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/cache/index1/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/cache/index1/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/cache/index1/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/cache/index1/shared_cpu_map deleted file mode 100644 index 16afa03e..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/cache/index1/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000002 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/cache/index1/size b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/cache/index1/size deleted file mode 100644 index 55c7f6dc..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/cache/index1/size +++ /dev/null @@ -1 +0,0 @@ -16K diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/cache/index1/type b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/cache/index1/type deleted file mode 100644 index 9a53cbfa..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/cache/index1/type +++ /dev/null @@ -1 +0,0 @@ -Instruction diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/cache/index2/level b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/cache/index2/level deleted file mode 100644 index 0cfbf088..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/cache/index2/level +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/cache/index2/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/cache/index2/shared_cpu_map deleted file mode 100644 index 16afa03e..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/cache/index2/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000002 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/cache/index2/size b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/cache/index2/size deleted file mode 100644 index 7a3f3736..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/cache/index2/size +++ /dev/null @@ -1 +0,0 @@ -256K diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/cache/index2/type b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/cache/index2/type deleted file mode 100644 index 0b7088ec..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/cache/index2/type +++ /dev/null @@ -1 +0,0 @@ -Data diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/cache/index3/level b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/cache/index3/level deleted file mode 100644 index 0cfbf088..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/cache/index3/level +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/cache/index3/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/cache/index3/shared_cpu_map deleted file mode 100644 index 2efe07b8..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/cache/index3/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/cache/index3/size b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/cache/index3/size deleted file mode 100644 index 94c87d3e..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/cache/index3/size +++ /dev/null @@ -1 +0,0 @@ -1024K diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/cache/index3/type b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/cache/index3/type deleted file mode 100644 index 9a53cbfa..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/cache/index3/type +++ /dev/null @@ -1 +0,0 @@ -Instruction diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/cache/index4/level b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/cache/index4/level deleted file mode 100644 index 00750edc..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/cache/index4/level +++ /dev/null @@ -1 +0,0 @@ -3 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/cache/index4/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/cache/index4/shared_cpu_map deleted file mode 100644 index 2efe07b8..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/cache/index4/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/cache/index4/size b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/cache/index4/size deleted file mode 100644 index fd6858c5..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/cache/index4/size +++ /dev/null @@ -1 +0,0 @@ -6144K diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/cache/index4/type b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/cache/index4/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/cache/index4/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/topology/core_siblings b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/topology/core_siblings deleted file mode 100644 index 9bac1436..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/topology/core_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000003 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/topology/thread_siblings b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/topology/thread_siblings deleted file mode 100644 index 16afa03e..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu1/topology/thread_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000002 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/cache/index0/level b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/cache/index0/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/cache/index0/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/cache/index0/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/cache/index0/shared_cpu_map deleted file mode 100644 index d3093646..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/cache/index0/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000400 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/cache/index0/size b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/cache/index0/size deleted file mode 100644 index 55c7f6dc..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/cache/index0/size +++ /dev/null @@ -1 +0,0 @@ -16K diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/cache/index0/type b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/cache/index0/type deleted file mode 100644 index 0b7088ec..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/cache/index0/type +++ /dev/null @@ -1 +0,0 @@ -Data diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/cache/index1/level b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/cache/index1/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/cache/index1/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/cache/index1/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/cache/index1/shared_cpu_map deleted file mode 100644 index d3093646..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/cache/index1/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000400 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/cache/index1/size b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/cache/index1/size deleted file mode 100644 index 55c7f6dc..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/cache/index1/size +++ /dev/null @@ -1 +0,0 @@ -16K diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/cache/index1/type b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/cache/index1/type deleted file mode 100644 index 9a53cbfa..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/cache/index1/type +++ /dev/null @@ -1 +0,0 @@ -Instruction diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/cache/index2/level b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/cache/index2/level deleted file mode 100644 index 0cfbf088..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/cache/index2/level +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/cache/index2/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/cache/index2/shared_cpu_map deleted file mode 100644 index d3093646..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/cache/index2/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000400 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/cache/index2/size b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/cache/index2/size deleted file mode 100644 index 7a3f3736..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/cache/index2/size +++ /dev/null @@ -1 +0,0 @@ -256K diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/cache/index2/type b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/cache/index2/type deleted file mode 100644 index 0b7088ec..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/cache/index2/type +++ /dev/null @@ -1 +0,0 @@ -Data diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/cache/index3/level b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/cache/index3/level deleted file mode 100644 index 0cfbf088..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/cache/index3/level +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/cache/index3/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/cache/index3/shared_cpu_map deleted file mode 100644 index 2efe07b8..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/cache/index3/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/cache/index3/size b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/cache/index3/size deleted file mode 100644 index 94c87d3e..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/cache/index3/size +++ /dev/null @@ -1 +0,0 @@ -1024K diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/cache/index3/type b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/cache/index3/type deleted file mode 100644 index 9a53cbfa..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/cache/index3/type +++ /dev/null @@ -1 +0,0 @@ -Instruction diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/cache/index4/level b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/cache/index4/level deleted file mode 100644 index 00750edc..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/cache/index4/level +++ /dev/null @@ -1 +0,0 @@ -3 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/cache/index4/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/cache/index4/shared_cpu_map deleted file mode 100644 index 2efe07b8..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/cache/index4/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/cache/index4/size b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/cache/index4/size deleted file mode 100644 index fd6858c5..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/cache/index4/size +++ /dev/null @@ -1 +0,0 @@ -6144K diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/cache/index4/type b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/cache/index4/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/cache/index4/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/topology/core_siblings b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/topology/core_siblings deleted file mode 100644 index 076a1053..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/topology/core_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000c00 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/topology/thread_siblings b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/topology/thread_siblings deleted file mode 100644 index d3093646..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu10/topology/thread_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000400 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/cache/index0/level b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/cache/index0/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/cache/index0/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/cache/index0/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/cache/index0/shared_cpu_map deleted file mode 100644 index a9d9e5d8..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/cache/index0/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000800 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/cache/index0/size b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/cache/index0/size deleted file mode 100644 index 55c7f6dc..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/cache/index0/size +++ /dev/null @@ -1 +0,0 @@ -16K diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/cache/index0/type b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/cache/index0/type deleted file mode 100644 index 0b7088ec..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/cache/index0/type +++ /dev/null @@ -1 +0,0 @@ -Data diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/cache/index1/level b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/cache/index1/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/cache/index1/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/cache/index1/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/cache/index1/shared_cpu_map deleted file mode 100644 index a9d9e5d8..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/cache/index1/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000800 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/cache/index1/size b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/cache/index1/size deleted file mode 100644 index 55c7f6dc..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/cache/index1/size +++ /dev/null @@ -1 +0,0 @@ -16K diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/cache/index1/type b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/cache/index1/type deleted file mode 100644 index 9a53cbfa..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/cache/index1/type +++ /dev/null @@ -1 +0,0 @@ -Instruction diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/cache/index2/level b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/cache/index2/level deleted file mode 100644 index 0cfbf088..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/cache/index2/level +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/cache/index2/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/cache/index2/shared_cpu_map deleted file mode 100644 index a9d9e5d8..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/cache/index2/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000800 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/cache/index2/size b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/cache/index2/size deleted file mode 100644 index 7a3f3736..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/cache/index2/size +++ /dev/null @@ -1 +0,0 @@ -256K diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/cache/index2/type b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/cache/index2/type deleted file mode 100644 index 0b7088ec..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/cache/index2/type +++ /dev/null @@ -1 +0,0 @@ -Data diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/cache/index3/level b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/cache/index3/level deleted file mode 100644 index 0cfbf088..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/cache/index3/level +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/cache/index3/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/cache/index3/shared_cpu_map deleted file mode 100644 index 2efe07b8..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/cache/index3/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/cache/index3/size b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/cache/index3/size deleted file mode 100644 index 94c87d3e..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/cache/index3/size +++ /dev/null @@ -1 +0,0 @@ -1024K diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/cache/index3/type b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/cache/index3/type deleted file mode 100644 index 9a53cbfa..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/cache/index3/type +++ /dev/null @@ -1 +0,0 @@ -Instruction diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/cache/index4/level b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/cache/index4/level deleted file mode 100644 index 00750edc..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/cache/index4/level +++ /dev/null @@ -1 +0,0 @@ -3 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/cache/index4/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/cache/index4/shared_cpu_map deleted file mode 100644 index 2efe07b8..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/cache/index4/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/cache/index4/size b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/cache/index4/size deleted file mode 100644 index fd6858c5..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/cache/index4/size +++ /dev/null @@ -1 +0,0 @@ -6144K diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/cache/index4/type b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/cache/index4/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/cache/index4/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/topology/core_siblings b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/topology/core_siblings deleted file mode 100644 index 076a1053..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/topology/core_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000c00 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/topology/thread_siblings b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/topology/thread_siblings deleted file mode 100644 index a9d9e5d8..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu11/topology/thread_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000800 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/cache/index0/level b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/cache/index0/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/cache/index0/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/cache/index0/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/cache/index0/shared_cpu_map deleted file mode 100644 index 12d3fd6b..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/cache/index0/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00001000 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/cache/index0/size b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/cache/index0/size deleted file mode 100644 index 55c7f6dc..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/cache/index0/size +++ /dev/null @@ -1 +0,0 @@ -16K diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/cache/index0/type b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/cache/index0/type deleted file mode 100644 index 0b7088ec..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/cache/index0/type +++ /dev/null @@ -1 +0,0 @@ -Data diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/cache/index1/level b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/cache/index1/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/cache/index1/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/cache/index1/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/cache/index1/shared_cpu_map deleted file mode 100644 index 12d3fd6b..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/cache/index1/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00001000 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/cache/index1/size b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/cache/index1/size deleted file mode 100644 index 55c7f6dc..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/cache/index1/size +++ /dev/null @@ -1 +0,0 @@ -16K diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/cache/index1/type b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/cache/index1/type deleted file mode 100644 index 9a53cbfa..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/cache/index1/type +++ /dev/null @@ -1 +0,0 @@ -Instruction diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/cache/index2/level b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/cache/index2/level deleted file mode 100644 index 0cfbf088..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/cache/index2/level +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/cache/index2/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/cache/index2/shared_cpu_map deleted file mode 100644 index 12d3fd6b..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/cache/index2/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00001000 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/cache/index2/size b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/cache/index2/size deleted file mode 100644 index 7a3f3736..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/cache/index2/size +++ /dev/null @@ -1 +0,0 @@ -256K diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/cache/index2/type b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/cache/index2/type deleted file mode 100644 index 0b7088ec..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/cache/index2/type +++ /dev/null @@ -1 +0,0 @@ -Data diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/cache/index3/level b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/cache/index3/level deleted file mode 100644 index 0cfbf088..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/cache/index3/level +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/cache/index3/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/cache/index3/shared_cpu_map deleted file mode 100644 index 2efe07b8..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/cache/index3/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/cache/index3/size b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/cache/index3/size deleted file mode 100644 index 94c87d3e..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/cache/index3/size +++ /dev/null @@ -1 +0,0 @@ -1024K diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/cache/index3/type b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/cache/index3/type deleted file mode 100644 index 9a53cbfa..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/cache/index3/type +++ /dev/null @@ -1 +0,0 @@ -Instruction diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/cache/index4/level b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/cache/index4/level deleted file mode 100644 index 00750edc..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/cache/index4/level +++ /dev/null @@ -1 +0,0 @@ -3 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/cache/index4/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/cache/index4/shared_cpu_map deleted file mode 100644 index 2efe07b8..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/cache/index4/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/cache/index4/size b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/cache/index4/size deleted file mode 100644 index fd6858c5..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/cache/index4/size +++ /dev/null @@ -1 +0,0 @@ -6144K diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/cache/index4/type b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/cache/index4/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/cache/index4/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/topology/core_siblings b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/topology/core_siblings deleted file mode 100644 index d244892f..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/topology/core_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00003000 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/topology/thread_siblings b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/topology/thread_siblings deleted file mode 100644 index 12d3fd6b..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu12/topology/thread_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00001000 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/cache/index0/level b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/cache/index0/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/cache/index0/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/cache/index0/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/cache/index0/shared_cpu_map deleted file mode 100644 index dc247c36..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/cache/index0/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00002000 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/cache/index0/size b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/cache/index0/size deleted file mode 100644 index 55c7f6dc..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/cache/index0/size +++ /dev/null @@ -1 +0,0 @@ -16K diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/cache/index0/type b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/cache/index0/type deleted file mode 100644 index 0b7088ec..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/cache/index0/type +++ /dev/null @@ -1 +0,0 @@ -Data diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/cache/index1/level b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/cache/index1/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/cache/index1/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/cache/index1/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/cache/index1/shared_cpu_map deleted file mode 100644 index dc247c36..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/cache/index1/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00002000 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/cache/index1/size b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/cache/index1/size deleted file mode 100644 index 55c7f6dc..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/cache/index1/size +++ /dev/null @@ -1 +0,0 @@ -16K diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/cache/index1/type b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/cache/index1/type deleted file mode 100644 index 9a53cbfa..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/cache/index1/type +++ /dev/null @@ -1 +0,0 @@ -Instruction diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/cache/index2/level b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/cache/index2/level deleted file mode 100644 index 0cfbf088..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/cache/index2/level +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/cache/index2/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/cache/index2/shared_cpu_map deleted file mode 100644 index dc247c36..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/cache/index2/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00002000 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/cache/index2/size b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/cache/index2/size deleted file mode 100644 index 7a3f3736..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/cache/index2/size +++ /dev/null @@ -1 +0,0 @@ -256K diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/cache/index2/type b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/cache/index2/type deleted file mode 100644 index 0b7088ec..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/cache/index2/type +++ /dev/null @@ -1 +0,0 @@ -Data diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/cache/index3/level b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/cache/index3/level deleted file mode 100644 index 0cfbf088..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/cache/index3/level +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/cache/index3/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/cache/index3/shared_cpu_map deleted file mode 100644 index 2efe07b8..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/cache/index3/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/cache/index3/size b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/cache/index3/size deleted file mode 100644 index 94c87d3e..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/cache/index3/size +++ /dev/null @@ -1 +0,0 @@ -1024K diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/cache/index3/type b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/cache/index3/type deleted file mode 100644 index 9a53cbfa..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/cache/index3/type +++ /dev/null @@ -1 +0,0 @@ -Instruction diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/cache/index4/level b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/cache/index4/level deleted file mode 100644 index 00750edc..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/cache/index4/level +++ /dev/null @@ -1 +0,0 @@ -3 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/cache/index4/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/cache/index4/shared_cpu_map deleted file mode 100644 index 2efe07b8..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/cache/index4/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/cache/index4/size b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/cache/index4/size deleted file mode 100644 index fd6858c5..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/cache/index4/size +++ /dev/null @@ -1 +0,0 @@ -6144K diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/cache/index4/type b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/cache/index4/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/cache/index4/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/topology/core_siblings b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/topology/core_siblings deleted file mode 100644 index d244892f..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/topology/core_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00003000 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/topology/thread_siblings b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/topology/thread_siblings deleted file mode 100644 index dc247c36..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu13/topology/thread_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00002000 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/cache/index0/level b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/cache/index0/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/cache/index0/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/cache/index0/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/cache/index0/shared_cpu_map deleted file mode 100644 index 82d749f5..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/cache/index0/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00004000 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/cache/index0/size b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/cache/index0/size deleted file mode 100644 index 55c7f6dc..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/cache/index0/size +++ /dev/null @@ -1 +0,0 @@ -16K diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/cache/index0/type b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/cache/index0/type deleted file mode 100644 index 0b7088ec..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/cache/index0/type +++ /dev/null @@ -1 +0,0 @@ -Data diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/cache/index1/level b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/cache/index1/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/cache/index1/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/cache/index1/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/cache/index1/shared_cpu_map deleted file mode 100644 index 82d749f5..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/cache/index1/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00004000 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/cache/index1/size b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/cache/index1/size deleted file mode 100644 index 55c7f6dc..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/cache/index1/size +++ /dev/null @@ -1 +0,0 @@ -16K diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/cache/index1/type b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/cache/index1/type deleted file mode 100644 index 9a53cbfa..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/cache/index1/type +++ /dev/null @@ -1 +0,0 @@ -Instruction diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/cache/index2/level b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/cache/index2/level deleted file mode 100644 index 0cfbf088..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/cache/index2/level +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/cache/index2/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/cache/index2/shared_cpu_map deleted file mode 100644 index 82d749f5..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/cache/index2/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00004000 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/cache/index2/size b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/cache/index2/size deleted file mode 100644 index 7a3f3736..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/cache/index2/size +++ /dev/null @@ -1 +0,0 @@ -256K diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/cache/index2/type b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/cache/index2/type deleted file mode 100644 index 0b7088ec..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/cache/index2/type +++ /dev/null @@ -1 +0,0 @@ -Data diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/cache/index3/level b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/cache/index3/level deleted file mode 100644 index 0cfbf088..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/cache/index3/level +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/cache/index3/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/cache/index3/shared_cpu_map deleted file mode 100644 index 2efe07b8..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/cache/index3/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/cache/index3/size b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/cache/index3/size deleted file mode 100644 index 94c87d3e..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/cache/index3/size +++ /dev/null @@ -1 +0,0 @@ -1024K diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/cache/index3/type b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/cache/index3/type deleted file mode 100644 index 9a53cbfa..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/cache/index3/type +++ /dev/null @@ -1 +0,0 @@ -Instruction diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/cache/index4/level b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/cache/index4/level deleted file mode 100644 index 00750edc..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/cache/index4/level +++ /dev/null @@ -1 +0,0 @@ -3 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/cache/index4/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/cache/index4/shared_cpu_map deleted file mode 100644 index 2efe07b8..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/cache/index4/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/cache/index4/size b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/cache/index4/size deleted file mode 100644 index fd6858c5..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/cache/index4/size +++ /dev/null @@ -1 +0,0 @@ -6144K diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/cache/index4/type b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/cache/index4/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/cache/index4/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/topology/core_siblings b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/topology/core_siblings deleted file mode 100644 index 6fa6fa7d..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/topology/core_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,0000c000 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/topology/thread_siblings b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/topology/thread_siblings deleted file mode 100644 index 82d749f5..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu14/topology/thread_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00004000 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/cache/index0/level b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/cache/index0/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/cache/index0/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/cache/index0/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/cache/index0/shared_cpu_map deleted file mode 100644 index bac03df0..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/cache/index0/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00008000 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/cache/index0/size b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/cache/index0/size deleted file mode 100644 index 55c7f6dc..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/cache/index0/size +++ /dev/null @@ -1 +0,0 @@ -16K diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/cache/index0/type b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/cache/index0/type deleted file mode 100644 index 0b7088ec..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/cache/index0/type +++ /dev/null @@ -1 +0,0 @@ -Data diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/cache/index1/level b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/cache/index1/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/cache/index1/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/cache/index1/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/cache/index1/shared_cpu_map deleted file mode 100644 index bac03df0..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/cache/index1/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00008000 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/cache/index1/size b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/cache/index1/size deleted file mode 100644 index 55c7f6dc..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/cache/index1/size +++ /dev/null @@ -1 +0,0 @@ -16K diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/cache/index1/type b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/cache/index1/type deleted file mode 100644 index 9a53cbfa..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/cache/index1/type +++ /dev/null @@ -1 +0,0 @@ -Instruction diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/cache/index2/level b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/cache/index2/level deleted file mode 100644 index 0cfbf088..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/cache/index2/level +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/cache/index2/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/cache/index2/shared_cpu_map deleted file mode 100644 index bac03df0..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/cache/index2/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00008000 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/cache/index2/size b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/cache/index2/size deleted file mode 100644 index 7a3f3736..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/cache/index2/size +++ /dev/null @@ -1 +0,0 @@ -256K diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/cache/index2/type b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/cache/index2/type deleted file mode 100644 index 0b7088ec..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/cache/index2/type +++ /dev/null @@ -1 +0,0 @@ -Data diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/cache/index3/level b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/cache/index3/level deleted file mode 100644 index 0cfbf088..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/cache/index3/level +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/cache/index3/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/cache/index3/shared_cpu_map deleted file mode 100644 index 2efe07b8..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/cache/index3/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/cache/index3/size b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/cache/index3/size deleted file mode 100644 index 94c87d3e..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/cache/index3/size +++ /dev/null @@ -1 +0,0 @@ -1024K diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/cache/index3/type b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/cache/index3/type deleted file mode 100644 index 9a53cbfa..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/cache/index3/type +++ /dev/null @@ -1 +0,0 @@ -Instruction diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/cache/index4/level b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/cache/index4/level deleted file mode 100644 index 00750edc..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/cache/index4/level +++ /dev/null @@ -1 +0,0 @@ -3 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/cache/index4/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/cache/index4/shared_cpu_map deleted file mode 100644 index 2efe07b8..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/cache/index4/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/cache/index4/size b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/cache/index4/size deleted file mode 100644 index fd6858c5..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/cache/index4/size +++ /dev/null @@ -1 +0,0 @@ -6144K diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/cache/index4/type b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/cache/index4/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/cache/index4/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/topology/core_siblings b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/topology/core_siblings deleted file mode 100644 index 6fa6fa7d..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/topology/core_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,0000c000 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/topology/thread_siblings b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/topology/thread_siblings deleted file mode 100644 index bac03df0..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu15/topology/thread_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00008000 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/cache/index0/level b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/cache/index0/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/cache/index0/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/cache/index0/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/cache/index0/shared_cpu_map deleted file mode 100644 index 7bf74bad..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/cache/index0/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000004 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/cache/index0/size b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/cache/index0/size deleted file mode 100644 index 55c7f6dc..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/cache/index0/size +++ /dev/null @@ -1 +0,0 @@ -16K diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/cache/index0/type b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/cache/index0/type deleted file mode 100644 index 0b7088ec..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/cache/index0/type +++ /dev/null @@ -1 +0,0 @@ -Data diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/cache/index1/level b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/cache/index1/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/cache/index1/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/cache/index1/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/cache/index1/shared_cpu_map deleted file mode 100644 index 7bf74bad..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/cache/index1/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000004 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/cache/index1/size b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/cache/index1/size deleted file mode 100644 index 55c7f6dc..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/cache/index1/size +++ /dev/null @@ -1 +0,0 @@ -16K diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/cache/index1/type b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/cache/index1/type deleted file mode 100644 index 9a53cbfa..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/cache/index1/type +++ /dev/null @@ -1 +0,0 @@ -Instruction diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/cache/index2/level b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/cache/index2/level deleted file mode 100644 index 0cfbf088..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/cache/index2/level +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/cache/index2/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/cache/index2/shared_cpu_map deleted file mode 100644 index 7bf74bad..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/cache/index2/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000004 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/cache/index2/size b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/cache/index2/size deleted file mode 100644 index 7a3f3736..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/cache/index2/size +++ /dev/null @@ -1 +0,0 @@ -256K diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/cache/index2/type b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/cache/index2/type deleted file mode 100644 index 0b7088ec..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/cache/index2/type +++ /dev/null @@ -1 +0,0 @@ -Data diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/cache/index3/level b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/cache/index3/level deleted file mode 100644 index 0cfbf088..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/cache/index3/level +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/cache/index3/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/cache/index3/shared_cpu_map deleted file mode 100644 index 2efe07b8..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/cache/index3/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/cache/index3/size b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/cache/index3/size deleted file mode 100644 index 94c87d3e..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/cache/index3/size +++ /dev/null @@ -1 +0,0 @@ -1024K diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/cache/index3/type b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/cache/index3/type deleted file mode 100644 index 9a53cbfa..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/cache/index3/type +++ /dev/null @@ -1 +0,0 @@ -Instruction diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/cache/index4/level b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/cache/index4/level deleted file mode 100644 index 00750edc..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/cache/index4/level +++ /dev/null @@ -1 +0,0 @@ -3 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/cache/index4/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/cache/index4/shared_cpu_map deleted file mode 100644 index 2efe07b8..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/cache/index4/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/cache/index4/size b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/cache/index4/size deleted file mode 100644 index fd6858c5..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/cache/index4/size +++ /dev/null @@ -1 +0,0 @@ -6144K diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/cache/index4/type b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/cache/index4/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/cache/index4/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/topology/core_siblings b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/topology/core_siblings deleted file mode 100644 index 564fe103..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/topology/core_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,0000000c diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/topology/thread_siblings b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/topology/thread_siblings deleted file mode 100644 index 7bf74bad..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu2/topology/thread_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000004 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/cache/index0/level b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/cache/index0/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/cache/index0/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/cache/index0/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/cache/index0/shared_cpu_map deleted file mode 100644 index f672618b..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/cache/index0/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000008 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/cache/index0/size b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/cache/index0/size deleted file mode 100644 index 55c7f6dc..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/cache/index0/size +++ /dev/null @@ -1 +0,0 @@ -16K diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/cache/index0/type b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/cache/index0/type deleted file mode 100644 index 0b7088ec..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/cache/index0/type +++ /dev/null @@ -1 +0,0 @@ -Data diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/cache/index1/level b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/cache/index1/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/cache/index1/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/cache/index1/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/cache/index1/shared_cpu_map deleted file mode 100644 index f672618b..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/cache/index1/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000008 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/cache/index1/size b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/cache/index1/size deleted file mode 100644 index 55c7f6dc..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/cache/index1/size +++ /dev/null @@ -1 +0,0 @@ -16K diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/cache/index1/type b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/cache/index1/type deleted file mode 100644 index 9a53cbfa..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/cache/index1/type +++ /dev/null @@ -1 +0,0 @@ -Instruction diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/cache/index2/level b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/cache/index2/level deleted file mode 100644 index 0cfbf088..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/cache/index2/level +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/cache/index2/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/cache/index2/shared_cpu_map deleted file mode 100644 index f672618b..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/cache/index2/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000008 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/cache/index2/size b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/cache/index2/size deleted file mode 100644 index 7a3f3736..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/cache/index2/size +++ /dev/null @@ -1 +0,0 @@ -256K diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/cache/index2/type b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/cache/index2/type deleted file mode 100644 index 0b7088ec..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/cache/index2/type +++ /dev/null @@ -1 +0,0 @@ -Data diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/cache/index3/level b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/cache/index3/level deleted file mode 100644 index 0cfbf088..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/cache/index3/level +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/cache/index3/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/cache/index3/shared_cpu_map deleted file mode 100644 index 2efe07b8..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/cache/index3/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/cache/index3/size b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/cache/index3/size deleted file mode 100644 index 94c87d3e..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/cache/index3/size +++ /dev/null @@ -1 +0,0 @@ -1024K diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/cache/index3/type b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/cache/index3/type deleted file mode 100644 index 9a53cbfa..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/cache/index3/type +++ /dev/null @@ -1 +0,0 @@ -Instruction diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/cache/index4/level b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/cache/index4/level deleted file mode 100644 index 00750edc..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/cache/index4/level +++ /dev/null @@ -1 +0,0 @@ -3 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/cache/index4/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/cache/index4/shared_cpu_map deleted file mode 100644 index 2efe07b8..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/cache/index4/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/cache/index4/size b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/cache/index4/size deleted file mode 100644 index fd6858c5..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/cache/index4/size +++ /dev/null @@ -1 +0,0 @@ -6144K diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/cache/index4/type b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/cache/index4/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/cache/index4/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/topology/core_siblings b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/topology/core_siblings deleted file mode 100644 index 564fe103..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/topology/core_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,0000000c diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/topology/thread_siblings b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/topology/thread_siblings deleted file mode 100644 index f672618b..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu3/topology/thread_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000008 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/cache/index0/level b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/cache/index0/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/cache/index0/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/cache/index0/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/cache/index0/shared_cpu_map deleted file mode 100644 index 9e32549b..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/cache/index0/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000010 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/cache/index0/size b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/cache/index0/size deleted file mode 100644 index 55c7f6dc..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/cache/index0/size +++ /dev/null @@ -1 +0,0 @@ -16K diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/cache/index0/type b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/cache/index0/type deleted file mode 100644 index 0b7088ec..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/cache/index0/type +++ /dev/null @@ -1 +0,0 @@ -Data diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/cache/index1/level b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/cache/index1/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/cache/index1/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/cache/index1/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/cache/index1/shared_cpu_map deleted file mode 100644 index 9e32549b..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/cache/index1/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000010 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/cache/index1/size b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/cache/index1/size deleted file mode 100644 index 55c7f6dc..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/cache/index1/size +++ /dev/null @@ -1 +0,0 @@ -16K diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/cache/index1/type b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/cache/index1/type deleted file mode 100644 index 9a53cbfa..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/cache/index1/type +++ /dev/null @@ -1 +0,0 @@ -Instruction diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/cache/index2/level b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/cache/index2/level deleted file mode 100644 index 0cfbf088..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/cache/index2/level +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/cache/index2/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/cache/index2/shared_cpu_map deleted file mode 100644 index 9e32549b..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/cache/index2/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000010 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/cache/index2/size b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/cache/index2/size deleted file mode 100644 index 7a3f3736..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/cache/index2/size +++ /dev/null @@ -1 +0,0 @@ -256K diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/cache/index2/type b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/cache/index2/type deleted file mode 100644 index 0b7088ec..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/cache/index2/type +++ /dev/null @@ -1 +0,0 @@ -Data diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/cache/index3/level b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/cache/index3/level deleted file mode 100644 index 0cfbf088..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/cache/index3/level +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/cache/index3/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/cache/index3/shared_cpu_map deleted file mode 100644 index 2efe07b8..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/cache/index3/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/cache/index3/size b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/cache/index3/size deleted file mode 100644 index 94c87d3e..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/cache/index3/size +++ /dev/null @@ -1 +0,0 @@ -1024K diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/cache/index3/type b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/cache/index3/type deleted file mode 100644 index 9a53cbfa..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/cache/index3/type +++ /dev/null @@ -1 +0,0 @@ -Instruction diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/cache/index4/level b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/cache/index4/level deleted file mode 100644 index 00750edc..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/cache/index4/level +++ /dev/null @@ -1 +0,0 @@ -3 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/cache/index4/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/cache/index4/shared_cpu_map deleted file mode 100644 index 2efe07b8..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/cache/index4/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/cache/index4/size b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/cache/index4/size deleted file mode 100644 index fd6858c5..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/cache/index4/size +++ /dev/null @@ -1 +0,0 @@ -6144K diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/cache/index4/type b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/cache/index4/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/cache/index4/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/topology/core_siblings b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/topology/core_siblings deleted file mode 100644 index f440ff52..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/topology/core_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000030 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/topology/thread_siblings b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/topology/thread_siblings deleted file mode 100644 index 9e32549b..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu4/topology/thread_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000010 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/cache/index0/level b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/cache/index0/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/cache/index0/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/cache/index0/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/cache/index0/shared_cpu_map deleted file mode 100644 index ba67c0ef..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/cache/index0/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000020 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/cache/index0/size b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/cache/index0/size deleted file mode 100644 index 55c7f6dc..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/cache/index0/size +++ /dev/null @@ -1 +0,0 @@ -16K diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/cache/index0/type b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/cache/index0/type deleted file mode 100644 index 0b7088ec..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/cache/index0/type +++ /dev/null @@ -1 +0,0 @@ -Data diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/cache/index1/level b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/cache/index1/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/cache/index1/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/cache/index1/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/cache/index1/shared_cpu_map deleted file mode 100644 index ba67c0ef..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/cache/index1/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000020 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/cache/index1/size b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/cache/index1/size deleted file mode 100644 index 55c7f6dc..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/cache/index1/size +++ /dev/null @@ -1 +0,0 @@ -16K diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/cache/index1/type b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/cache/index1/type deleted file mode 100644 index 9a53cbfa..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/cache/index1/type +++ /dev/null @@ -1 +0,0 @@ -Instruction diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/cache/index2/level b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/cache/index2/level deleted file mode 100644 index 0cfbf088..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/cache/index2/level +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/cache/index2/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/cache/index2/shared_cpu_map deleted file mode 100644 index ba67c0ef..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/cache/index2/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000020 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/cache/index2/size b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/cache/index2/size deleted file mode 100644 index 7a3f3736..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/cache/index2/size +++ /dev/null @@ -1 +0,0 @@ -256K diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/cache/index2/type b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/cache/index2/type deleted file mode 100644 index 0b7088ec..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/cache/index2/type +++ /dev/null @@ -1 +0,0 @@ -Data diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/cache/index3/level b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/cache/index3/level deleted file mode 100644 index 0cfbf088..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/cache/index3/level +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/cache/index3/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/cache/index3/shared_cpu_map deleted file mode 100644 index 2efe07b8..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/cache/index3/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/cache/index3/size b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/cache/index3/size deleted file mode 100644 index 94c87d3e..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/cache/index3/size +++ /dev/null @@ -1 +0,0 @@ -1024K diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/cache/index3/type b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/cache/index3/type deleted file mode 100644 index 9a53cbfa..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/cache/index3/type +++ /dev/null @@ -1 +0,0 @@ -Instruction diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/cache/index4/level b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/cache/index4/level deleted file mode 100644 index 00750edc..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/cache/index4/level +++ /dev/null @@ -1 +0,0 @@ -3 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/cache/index4/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/cache/index4/shared_cpu_map deleted file mode 100644 index 2efe07b8..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/cache/index4/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/cache/index4/size b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/cache/index4/size deleted file mode 100644 index fd6858c5..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/cache/index4/size +++ /dev/null @@ -1 +0,0 @@ -6144K diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/cache/index4/type b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/cache/index4/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/cache/index4/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/topology/core_siblings b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/topology/core_siblings deleted file mode 100644 index f440ff52..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/topology/core_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000030 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/topology/thread_siblings b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/topology/thread_siblings deleted file mode 100644 index ba67c0ef..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu5/topology/thread_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000020 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/cache/index0/level b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/cache/index0/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/cache/index0/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/cache/index0/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/cache/index0/shared_cpu_map deleted file mode 100644 index 90570988..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/cache/index0/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000040 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/cache/index0/size b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/cache/index0/size deleted file mode 100644 index 55c7f6dc..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/cache/index0/size +++ /dev/null @@ -1 +0,0 @@ -16K diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/cache/index0/type b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/cache/index0/type deleted file mode 100644 index 0b7088ec..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/cache/index0/type +++ /dev/null @@ -1 +0,0 @@ -Data diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/cache/index1/level b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/cache/index1/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/cache/index1/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/cache/index1/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/cache/index1/shared_cpu_map deleted file mode 100644 index 90570988..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/cache/index1/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000040 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/cache/index1/size b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/cache/index1/size deleted file mode 100644 index 55c7f6dc..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/cache/index1/size +++ /dev/null @@ -1 +0,0 @@ -16K diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/cache/index1/type b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/cache/index1/type deleted file mode 100644 index 9a53cbfa..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/cache/index1/type +++ /dev/null @@ -1 +0,0 @@ -Instruction diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/cache/index2/level b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/cache/index2/level deleted file mode 100644 index 0cfbf088..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/cache/index2/level +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/cache/index2/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/cache/index2/shared_cpu_map deleted file mode 100644 index 90570988..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/cache/index2/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000040 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/cache/index2/size b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/cache/index2/size deleted file mode 100644 index 7a3f3736..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/cache/index2/size +++ /dev/null @@ -1 +0,0 @@ -256K diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/cache/index2/type b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/cache/index2/type deleted file mode 100644 index 0b7088ec..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/cache/index2/type +++ /dev/null @@ -1 +0,0 @@ -Data diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/cache/index3/level b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/cache/index3/level deleted file mode 100644 index 0cfbf088..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/cache/index3/level +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/cache/index3/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/cache/index3/shared_cpu_map deleted file mode 100644 index 2efe07b8..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/cache/index3/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/cache/index3/size b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/cache/index3/size deleted file mode 100644 index 94c87d3e..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/cache/index3/size +++ /dev/null @@ -1 +0,0 @@ -1024K diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/cache/index3/type b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/cache/index3/type deleted file mode 100644 index 9a53cbfa..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/cache/index3/type +++ /dev/null @@ -1 +0,0 @@ -Instruction diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/cache/index4/level b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/cache/index4/level deleted file mode 100644 index 00750edc..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/cache/index4/level +++ /dev/null @@ -1 +0,0 @@ -3 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/cache/index4/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/cache/index4/shared_cpu_map deleted file mode 100644 index 2efe07b8..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/cache/index4/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/cache/index4/size b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/cache/index4/size deleted file mode 100644 index fd6858c5..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/cache/index4/size +++ /dev/null @@ -1 +0,0 @@ -6144K diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/cache/index4/type b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/cache/index4/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/cache/index4/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/topology/core_siblings b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/topology/core_siblings deleted file mode 100644 index 1f1561c9..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/topology/core_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,000000c0 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/topology/thread_siblings b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/topology/thread_siblings deleted file mode 100644 index 90570988..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu6/topology/thread_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000040 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/cache/index0/level b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/cache/index0/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/cache/index0/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/cache/index0/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/cache/index0/shared_cpu_map deleted file mode 100644 index d0710cdc..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/cache/index0/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000080 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/cache/index0/size b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/cache/index0/size deleted file mode 100644 index 55c7f6dc..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/cache/index0/size +++ /dev/null @@ -1 +0,0 @@ -16K diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/cache/index0/type b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/cache/index0/type deleted file mode 100644 index 0b7088ec..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/cache/index0/type +++ /dev/null @@ -1 +0,0 @@ -Data diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/cache/index1/level b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/cache/index1/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/cache/index1/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/cache/index1/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/cache/index1/shared_cpu_map deleted file mode 100644 index d0710cdc..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/cache/index1/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000080 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/cache/index1/size b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/cache/index1/size deleted file mode 100644 index 55c7f6dc..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/cache/index1/size +++ /dev/null @@ -1 +0,0 @@ -16K diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/cache/index1/type b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/cache/index1/type deleted file mode 100644 index 9a53cbfa..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/cache/index1/type +++ /dev/null @@ -1 +0,0 @@ -Instruction diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/cache/index2/level b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/cache/index2/level deleted file mode 100644 index 0cfbf088..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/cache/index2/level +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/cache/index2/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/cache/index2/shared_cpu_map deleted file mode 100644 index d0710cdc..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/cache/index2/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000080 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/cache/index2/size b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/cache/index2/size deleted file mode 100644 index 7a3f3736..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/cache/index2/size +++ /dev/null @@ -1 +0,0 @@ -256K diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/cache/index2/type b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/cache/index2/type deleted file mode 100644 index 0b7088ec..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/cache/index2/type +++ /dev/null @@ -1 +0,0 @@ -Data diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/cache/index3/level b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/cache/index3/level deleted file mode 100644 index 0cfbf088..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/cache/index3/level +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/cache/index3/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/cache/index3/shared_cpu_map deleted file mode 100644 index 2efe07b8..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/cache/index3/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/cache/index3/size b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/cache/index3/size deleted file mode 100644 index 94c87d3e..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/cache/index3/size +++ /dev/null @@ -1 +0,0 @@ -1024K diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/cache/index3/type b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/cache/index3/type deleted file mode 100644 index 9a53cbfa..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/cache/index3/type +++ /dev/null @@ -1 +0,0 @@ -Instruction diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/cache/index4/level b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/cache/index4/level deleted file mode 100644 index 00750edc..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/cache/index4/level +++ /dev/null @@ -1 +0,0 @@ -3 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/cache/index4/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/cache/index4/shared_cpu_map deleted file mode 100644 index 2efe07b8..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/cache/index4/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/cache/index4/size b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/cache/index4/size deleted file mode 100644 index fd6858c5..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/cache/index4/size +++ /dev/null @@ -1 +0,0 @@ -6144K diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/cache/index4/type b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/cache/index4/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/cache/index4/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/topology/core_siblings b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/topology/core_siblings deleted file mode 100644 index 1f1561c9..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/topology/core_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,000000c0 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/topology/thread_siblings b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/topology/thread_siblings deleted file mode 100644 index d0710cdc..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu7/topology/thread_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000080 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/cache/index0/level b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/cache/index0/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/cache/index0/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/cache/index0/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/cache/index0/shared_cpu_map deleted file mode 100644 index 942d9ebc..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/cache/index0/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000100 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/cache/index0/size b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/cache/index0/size deleted file mode 100644 index 55c7f6dc..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/cache/index0/size +++ /dev/null @@ -1 +0,0 @@ -16K diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/cache/index0/type b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/cache/index0/type deleted file mode 100644 index 0b7088ec..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/cache/index0/type +++ /dev/null @@ -1 +0,0 @@ -Data diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/cache/index1/level b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/cache/index1/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/cache/index1/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/cache/index1/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/cache/index1/shared_cpu_map deleted file mode 100644 index 942d9ebc..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/cache/index1/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000100 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/cache/index1/size b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/cache/index1/size deleted file mode 100644 index 55c7f6dc..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/cache/index1/size +++ /dev/null @@ -1 +0,0 @@ -16K diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/cache/index1/type b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/cache/index1/type deleted file mode 100644 index 9a53cbfa..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/cache/index1/type +++ /dev/null @@ -1 +0,0 @@ -Instruction diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/cache/index2/level b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/cache/index2/level deleted file mode 100644 index 0cfbf088..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/cache/index2/level +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/cache/index2/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/cache/index2/shared_cpu_map deleted file mode 100644 index 942d9ebc..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/cache/index2/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000100 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/cache/index2/size b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/cache/index2/size deleted file mode 100644 index 7a3f3736..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/cache/index2/size +++ /dev/null @@ -1 +0,0 @@ -256K diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/cache/index2/type b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/cache/index2/type deleted file mode 100644 index 0b7088ec..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/cache/index2/type +++ /dev/null @@ -1 +0,0 @@ -Data diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/cache/index3/level b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/cache/index3/level deleted file mode 100644 index 0cfbf088..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/cache/index3/level +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/cache/index3/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/cache/index3/shared_cpu_map deleted file mode 100644 index 2efe07b8..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/cache/index3/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/cache/index3/size b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/cache/index3/size deleted file mode 100644 index 94c87d3e..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/cache/index3/size +++ /dev/null @@ -1 +0,0 @@ -1024K diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/cache/index3/type b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/cache/index3/type deleted file mode 100644 index 9a53cbfa..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/cache/index3/type +++ /dev/null @@ -1 +0,0 @@ -Instruction diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/cache/index4/level b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/cache/index4/level deleted file mode 100644 index 00750edc..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/cache/index4/level +++ /dev/null @@ -1 +0,0 @@ -3 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/cache/index4/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/cache/index4/shared_cpu_map deleted file mode 100644 index 2efe07b8..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/cache/index4/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/cache/index4/size b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/cache/index4/size deleted file mode 100644 index fd6858c5..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/cache/index4/size +++ /dev/null @@ -1 +0,0 @@ -6144K diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/cache/index4/type b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/cache/index4/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/cache/index4/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/topology/core_siblings b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/topology/core_siblings deleted file mode 100644 index 4b517ebb..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/topology/core_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000300 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/topology/thread_siblings b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/topology/thread_siblings deleted file mode 100644 index 942d9ebc..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu8/topology/thread_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000100 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/cache/index0/level b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/cache/index0/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/cache/index0/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/cache/index0/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/cache/index0/shared_cpu_map deleted file mode 100644 index aa867381..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/cache/index0/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000200 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/cache/index0/size b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/cache/index0/size deleted file mode 100644 index 55c7f6dc..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/cache/index0/size +++ /dev/null @@ -1 +0,0 @@ -16K diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/cache/index0/type b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/cache/index0/type deleted file mode 100644 index 0b7088ec..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/cache/index0/type +++ /dev/null @@ -1 +0,0 @@ -Data diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/cache/index1/level b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/cache/index1/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/cache/index1/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/cache/index1/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/cache/index1/shared_cpu_map deleted file mode 100644 index aa867381..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/cache/index1/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000200 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/cache/index1/size b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/cache/index1/size deleted file mode 100644 index 55c7f6dc..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/cache/index1/size +++ /dev/null @@ -1 +0,0 @@ -16K diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/cache/index1/type b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/cache/index1/type deleted file mode 100644 index 9a53cbfa..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/cache/index1/type +++ /dev/null @@ -1 +0,0 @@ -Instruction diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/cache/index2/level b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/cache/index2/level deleted file mode 100644 index 0cfbf088..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/cache/index2/level +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/cache/index2/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/cache/index2/shared_cpu_map deleted file mode 100644 index aa867381..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/cache/index2/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000200 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/cache/index2/size b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/cache/index2/size deleted file mode 100644 index 7a3f3736..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/cache/index2/size +++ /dev/null @@ -1 +0,0 @@ -256K diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/cache/index2/type b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/cache/index2/type deleted file mode 100644 index 0b7088ec..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/cache/index2/type +++ /dev/null @@ -1 +0,0 @@ -Data diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/cache/index3/level b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/cache/index3/level deleted file mode 100644 index 0cfbf088..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/cache/index3/level +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/cache/index3/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/cache/index3/shared_cpu_map deleted file mode 100644 index 2efe07b8..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/cache/index3/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/cache/index3/size b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/cache/index3/size deleted file mode 100644 index 94c87d3e..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/cache/index3/size +++ /dev/null @@ -1 +0,0 @@ -1024K diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/cache/index3/type b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/cache/index3/type deleted file mode 100644 index 9a53cbfa..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/cache/index3/type +++ /dev/null @@ -1 +0,0 @@ -Instruction diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/cache/index4/level b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/cache/index4/level deleted file mode 100644 index 00750edc..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/cache/index4/level +++ /dev/null @@ -1 +0,0 @@ -3 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/cache/index4/shared_cpu_map b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/cache/index4/shared_cpu_map deleted file mode 100644 index 2efe07b8..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/cache/index4/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/cache/index4/size b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/cache/index4/size deleted file mode 100644 index fd6858c5..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/cache/index4/size +++ /dev/null @@ -1 +0,0 @@ -6144K diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/cache/index4/type b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/cache/index4/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/cache/index4/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/topology/core_siblings b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/topology/core_siblings deleted file mode 100644 index 4b517ebb..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/topology/core_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000300 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/topology/thread_siblings b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/topology/thread_siblings deleted file mode 100644 index aa867381..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/cpu/cpu9/topology/thread_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000200 diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/node/node0/cpu0 b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/node/node0/cpu0 deleted file mode 100644 index a8c6fc85..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/node/node0/cpu0 +++ /dev/null @@ -1 +0,0 @@ -../../../../devices/system/cpu/cpu0 \ No newline at end of file diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/node/node0/cpu1 b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/node/node0/cpu1 deleted file mode 100644 index a4064281..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/node/node0/cpu1 +++ /dev/null @@ -1 +0,0 @@ -../../../../devices/system/cpu/cpu1 \ No newline at end of file diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/node/node0/cpu2 b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/node/node0/cpu2 deleted file mode 100644 index 782bdd65..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/node/node0/cpu2 +++ /dev/null @@ -1 +0,0 @@ -../../../../devices/system/cpu/cpu2 \ No newline at end of file diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/node/node0/cpu3 b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/node/node0/cpu3 deleted file mode 100644 index ff189f54..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/node/node0/cpu3 +++ /dev/null @@ -1 +0,0 @@ -../../../../devices/system/cpu/cpu3 \ No newline at end of file diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/node/node0/cpu4 b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/node/node0/cpu4 deleted file mode 100644 index 3bbc86e4..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/node/node0/cpu4 +++ /dev/null @@ -1 +0,0 @@ -../../../../devices/system/cpu/cpu4 \ No newline at end of file diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/node/node0/cpu5 b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/node/node0/cpu5 deleted file mode 100644 index 226ac758..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/node/node0/cpu5 +++ /dev/null @@ -1 +0,0 @@ -../../../../devices/system/cpu/cpu5 \ No newline at end of file diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/node/node0/cpu6 b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/node/node0/cpu6 deleted file mode 100644 index 1fae7b06..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/node/node0/cpu6 +++ /dev/null @@ -1 +0,0 @@ -../../../../devices/system/cpu/cpu6 \ No newline at end of file diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/node/node0/cpu7 b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/node/node0/cpu7 deleted file mode 100644 index 942f0f5d..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/node/node0/cpu7 +++ /dev/null @@ -1 +0,0 @@ -../../../../devices/system/cpu/cpu7 \ No newline at end of file diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/node/node0/cpumap b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/node/node0/cpumap deleted file mode 100644 index 41f6ac9e..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/node/node0/cpumap +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,000000ff diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/node/node1/cpu10 b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/node/node1/cpu10 deleted file mode 100644 index 380cc4ba..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/node/node1/cpu10 +++ /dev/null @@ -1 +0,0 @@ -../../../../devices/system/cpu/cpu10 \ No newline at end of file diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/node/node1/cpu11 b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/node/node1/cpu11 deleted file mode 100644 index 5a3067b6..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/node/node1/cpu11 +++ /dev/null @@ -1 +0,0 @@ -../../../../devices/system/cpu/cpu11 \ No newline at end of file diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/node/node1/cpu12 b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/node/node1/cpu12 deleted file mode 100644 index 1b44a959..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/node/node1/cpu12 +++ /dev/null @@ -1 +0,0 @@ -../../../../devices/system/cpu/cpu12 \ No newline at end of file diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/node/node1/cpu13 b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/node/node1/cpu13 deleted file mode 100644 index abf35524..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/node/node1/cpu13 +++ /dev/null @@ -1 +0,0 @@ -../../../../devices/system/cpu/cpu13 \ No newline at end of file diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/node/node1/cpu14 b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/node/node1/cpu14 deleted file mode 100644 index 3d2f2420..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/node/node1/cpu14 +++ /dev/null @@ -1 +0,0 @@ -../../../../devices/system/cpu/cpu14 \ No newline at end of file diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/node/node1/cpu15 b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/node/node1/cpu15 deleted file mode 100644 index 0b6a8cf2..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/node/node1/cpu15 +++ /dev/null @@ -1 +0,0 @@ -../../../../devices/system/cpu/cpu15 \ No newline at end of file diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/node/node1/cpu8 b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/node/node1/cpu8 deleted file mode 100644 index 695f6cd0..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/node/node1/cpu8 +++ /dev/null @@ -1 +0,0 @@ -../../../../devices/system/cpu/cpu8 \ No newline at end of file diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/node/node1/cpu9 b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/node/node1/cpu9 deleted file mode 100644 index 00cdda74..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/node/node1/cpu9 +++ /dev/null @@ -1 +0,0 @@ -../../../../devices/system/cpu/cpu9 \ No newline at end of file diff --git a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/node/node1/cpumap b/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/node/node1/cpumap deleted file mode 100644 index faa27e87..00000000 --- a/tests/ts/lscpu/dumps/ia64-pg0/sys/devices/system/node/node1/cpumap +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,0000ff00 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585.tar.gz b/tests/ts/lscpu/dumps/x86_64-hpdl585.tar.gz new file mode 100644 index 00000000..89790b70 Binary files /dev/null and b/tests/ts/lscpu/dumps/x86_64-hpdl585.tar.gz differ diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/proc/cpuinfo b/tests/ts/lscpu/dumps/x86_64-hpdl585/proc/cpuinfo deleted file mode 100644 index 6b0daf25..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/proc/cpuinfo +++ /dev/null @@ -1,384 +0,0 @@ -processor : 0 -vendor_id : AuthenticAMD -cpu family : 16 -model : 2 -model name : Quad-Core AMD Opteron(tm) Processor 8354 -stepping : 3 -cpu MHz : 2210.188 -cache size : 512 KB -physical id : 0 -siblings : 4 -core id : 0 -cpu cores : 4 -fpu : yes -fpu_exception : yes -cpuid level : 5 -wp : yes -flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc pni cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy altmovcr8 abm sse4a misalignsse 3dnowprefetch osvw -bogomips : 4423.03 -TLB size : 1024 4K pages -clflush size : 64 -cache_alignment : 64 -address sizes : 48 bits physical, 48 bits virtual -power management: ts ttp tm stc 100mhzsteps hwpstate [8] - -processor : 1 -vendor_id : AuthenticAMD -cpu family : 16 -model : 2 -model name : Quad-Core AMD Opteron(tm) Processor 8354 -stepping : 3 -cpu MHz : 2210.188 -cache size : 512 KB -physical id : 1 -siblings : 4 -core id : 0 -cpu cores : 4 -fpu : yes -fpu_exception : yes -cpuid level : 5 -wp : yes -flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc pni cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy altmovcr8 abm sse4a misalignsse 3dnowprefetch osvw -bogomips : 4420.50 -TLB size : 1024 4K pages -clflush size : 64 -cache_alignment : 64 -address sizes : 48 bits physical, 48 bits virtual -power management: ts ttp tm stc 100mhzsteps hwpstate [8] - -processor : 2 -vendor_id : AuthenticAMD -cpu family : 16 -model : 2 -model name : Quad-Core AMD Opteron(tm) Processor 8354 -stepping : 3 -cpu MHz : 2210.188 -cache size : 512 KB -physical id : 2 -siblings : 4 -core id : 0 -cpu cores : 4 -fpu : yes -fpu_exception : yes -cpuid level : 5 -wp : yes -flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc pni cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy altmovcr8 abm sse4a misalignsse 3dnowprefetch osvw -bogomips : 4420.55 -TLB size : 1024 4K pages -clflush size : 64 -cache_alignment : 64 -address sizes : 48 bits physical, 48 bits virtual -power management: ts ttp tm stc 100mhzsteps hwpstate [8] - -processor : 3 -vendor_id : AuthenticAMD -cpu family : 16 -model : 2 -model name : Quad-Core AMD Opteron(tm) Processor 8354 -stepping : 3 -cpu MHz : 2210.188 -cache size : 512 KB -physical id : 3 -siblings : 4 -core id : 0 -cpu cores : 4 -fpu : yes -fpu_exception : yes -cpuid level : 5 -wp : yes -flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc pni cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy altmovcr8 abm sse4a misalignsse 3dnowprefetch osvw -bogomips : 4420.80 -TLB size : 1024 4K pages -clflush size : 64 -cache_alignment : 64 -address sizes : 48 bits physical, 48 bits virtual -power management: ts ttp tm stc 100mhzsteps hwpstate [8] - -processor : 4 -vendor_id : AuthenticAMD -cpu family : 16 -model : 2 -model name : Quad-Core AMD Opteron(tm) Processor 8354 -stepping : 3 -cpu MHz : 2210.188 -cache size : 512 KB -physical id : 0 -siblings : 4 -core id : 1 -cpu cores : 4 -fpu : yes -fpu_exception : yes -cpuid level : 5 -wp : yes -flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc pni cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy altmovcr8 abm sse4a misalignsse 3dnowprefetch osvw -bogomips : 4420.43 -TLB size : 1024 4K pages -clflush size : 64 -cache_alignment : 64 -address sizes : 48 bits physical, 48 bits virtual -power management: ts ttp tm stc 100mhzsteps hwpstate [8] - -processor : 5 -vendor_id : AuthenticAMD -cpu family : 16 -model : 2 -model name : Quad-Core AMD Opteron(tm) Processor 8354 -stepping : 3 -cpu MHz : 2210.188 -cache size : 512 KB -physical id : 1 -siblings : 4 -core id : 1 -cpu cores : 4 -fpu : yes -fpu_exception : yes -cpuid level : 5 -wp : yes -flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc pni cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy altmovcr8 abm sse4a misalignsse 3dnowprefetch osvw -bogomips : 4420.45 -TLB size : 1024 4K pages -clflush size : 64 -cache_alignment : 64 -address sizes : 48 bits physical, 48 bits virtual -power management: ts ttp tm stc 100mhzsteps hwpstate [8] - -processor : 6 -vendor_id : AuthenticAMD -cpu family : 16 -model : 2 -model name : Quad-Core AMD Opteron(tm) Processor 8354 -stepping : 3 -cpu MHz : 2210.188 -cache size : 512 KB -physical id : 2 -siblings : 4 -core id : 1 -cpu cores : 4 -fpu : yes -fpu_exception : yes -cpuid level : 5 -wp : yes -flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc pni cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy altmovcr8 abm sse4a misalignsse 3dnowprefetch osvw -bogomips : 4420.54 -TLB size : 1024 4K pages -clflush size : 64 -cache_alignment : 64 -address sizes : 48 bits physical, 48 bits virtual -power management: ts ttp tm stc 100mhzsteps hwpstate [8] - -processor : 7 -vendor_id : AuthenticAMD -cpu family : 16 -model : 2 -model name : Quad-Core AMD Opteron(tm) Processor 8354 -stepping : 3 -cpu MHz : 2210.188 -cache size : 512 KB -physical id : 3 -siblings : 4 -core id : 1 -cpu cores : 4 -fpu : yes -fpu_exception : yes -cpuid level : 5 -wp : yes -flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc pni cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy altmovcr8 abm sse4a misalignsse 3dnowprefetch osvw -bogomips : 4421.02 -TLB size : 1024 4K pages -clflush size : 64 -cache_alignment : 64 -address sizes : 48 bits physical, 48 bits virtual -power management: ts ttp tm stc 100mhzsteps hwpstate [8] - -processor : 8 -vendor_id : AuthenticAMD -cpu family : 16 -model : 2 -model name : Quad-Core AMD Opteron(tm) Processor 8354 -stepping : 3 -cpu MHz : 2210.188 -cache size : 512 KB -physical id : 0 -siblings : 4 -core id : 2 -cpu cores : 4 -fpu : yes -fpu_exception : yes -cpuid level : 5 -wp : yes -flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc pni cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy altmovcr8 abm sse4a misalignsse 3dnowprefetch osvw -bogomips : 4420.50 -TLB size : 1024 4K pages -clflush size : 64 -cache_alignment : 64 -address sizes : 48 bits physical, 48 bits virtual -power management: ts ttp tm stc 100mhzsteps hwpstate [8] - -processor : 9 -vendor_id : AuthenticAMD -cpu family : 16 -model : 2 -model name : Quad-Core AMD Opteron(tm) Processor 8354 -stepping : 3 -cpu MHz : 2210.188 -cache size : 512 KB -physical id : 1 -siblings : 4 -core id : 2 -cpu cores : 4 -fpu : yes -fpu_exception : yes -cpuid level : 5 -wp : yes -flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc pni cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy altmovcr8 abm sse4a misalignsse 3dnowprefetch osvw -bogomips : 4420.38 -TLB size : 1024 4K pages -clflush size : 64 -cache_alignment : 64 -address sizes : 48 bits physical, 48 bits virtual -power management: ts ttp tm stc 100mhzsteps hwpstate [8] - -processor : 10 -vendor_id : AuthenticAMD -cpu family : 16 -model : 2 -model name : Quad-Core AMD Opteron(tm) Processor 8354 -stepping : 3 -cpu MHz : 2210.188 -cache size : 512 KB -physical id : 2 -siblings : 4 -core id : 2 -cpu cores : 4 -fpu : yes -fpu_exception : yes -cpuid level : 5 -wp : yes -flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc pni cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy altmovcr8 abm sse4a misalignsse 3dnowprefetch osvw -bogomips : 4420.26 -TLB size : 1024 4K pages -clflush size : 64 -cache_alignment : 64 -address sizes : 48 bits physical, 48 bits virtual -power management: ts ttp tm stc 100mhzsteps hwpstate [8] - -processor : 11 -vendor_id : AuthenticAMD -cpu family : 16 -model : 2 -model name : Quad-Core AMD Opteron(tm) Processor 8354 -stepping : 3 -cpu MHz : 2210.188 -cache size : 512 KB -physical id : 3 -siblings : 4 -core id : 2 -cpu cores : 4 -fpu : yes -fpu_exception : yes -cpuid level : 5 -wp : yes -flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc pni cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy altmovcr8 abm sse4a misalignsse 3dnowprefetch osvw -bogomips : 4420.52 -TLB size : 1024 4K pages -clflush size : 64 -cache_alignment : 64 -address sizes : 48 bits physical, 48 bits virtual -power management: ts ttp tm stc 100mhzsteps hwpstate [8] - -processor : 12 -vendor_id : AuthenticAMD -cpu family : 16 -model : 2 -model name : Quad-Core AMD Opteron(tm) Processor 8354 -stepping : 3 -cpu MHz : 2210.188 -cache size : 512 KB -physical id : 0 -siblings : 4 -core id : 3 -cpu cores : 4 -fpu : yes -fpu_exception : yes -cpuid level : 5 -wp : yes -flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc pni cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy altmovcr8 abm sse4a misalignsse 3dnowprefetch osvw -bogomips : 4420.55 -TLB size : 1024 4K pages -clflush size : 64 -cache_alignment : 64 -address sizes : 48 bits physical, 48 bits virtual -power management: ts ttp tm stc 100mhzsteps hwpstate [8] - -processor : 13 -vendor_id : AuthenticAMD -cpu family : 16 -model : 2 -model name : Quad-Core AMD Opteron(tm) Processor 8354 -stepping : 3 -cpu MHz : 2210.188 -cache size : 512 KB -physical id : 1 -siblings : 4 -core id : 3 -cpu cores : 4 -fpu : yes -fpu_exception : yes -cpuid level : 5 -wp : yes -flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc pni cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy altmovcr8 abm sse4a misalignsse 3dnowprefetch osvw -bogomips : 4420.43 -TLB size : 1024 4K pages -clflush size : 64 -cache_alignment : 64 -address sizes : 48 bits physical, 48 bits virtual -power management: ts ttp tm stc 100mhzsteps hwpstate [8] - -processor : 14 -vendor_id : AuthenticAMD -cpu family : 16 -model : 2 -model name : Quad-Core AMD Opteron(tm) Processor 8354 -stepping : 3 -cpu MHz : 2210.188 -cache size : 512 KB -physical id : 2 -siblings : 4 -core id : 3 -cpu cores : 4 -fpu : yes -fpu_exception : yes -cpuid level : 5 -wp : yes -flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc pni cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy altmovcr8 abm sse4a misalignsse 3dnowprefetch osvw -bogomips : 4420.52 -TLB size : 1024 4K pages -clflush size : 64 -cache_alignment : 64 -address sizes : 48 bits physical, 48 bits virtual -power management: ts ttp tm stc 100mhzsteps hwpstate [8] - -processor : 15 -vendor_id : AuthenticAMD -cpu family : 16 -model : 2 -model name : Quad-Core AMD Opteron(tm) Processor 8354 -stepping : 3 -cpu MHz : 2210.188 -cache size : 512 KB -physical id : 3 -siblings : 4 -core id : 3 -cpu cores : 4 -fpu : yes -fpu_exception : yes -cpuid level : 5 -wp : yes -flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc pni cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy altmovcr8 abm sse4a misalignsse 3dnowprefetch osvw -bogomips : 4420.50 -TLB size : 1024 4K pages -clflush size : 64 -cache_alignment : 64 -address sizes : 48 bits physical, 48 bits virtual -power management: ts ttp tm stc 100mhzsteps hwpstate [8] - diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu0/cache/index0/level b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu0/cache/index0/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu0/cache/index0/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu0/cache/index0/shared_cpu_map b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu0/cache/index0/shared_cpu_map deleted file mode 100644 index 6dcc80c7..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu0/cache/index0/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000001 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu0/cache/index0/size b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu0/cache/index0/size deleted file mode 100644 index 176f9414..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu0/cache/index0/size +++ /dev/null @@ -1 +0,0 @@ -512K diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu0/cache/index0/type b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu0/cache/index0/type deleted file mode 100644 index 0b7088ec..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu0/cache/index0/type +++ /dev/null @@ -1 +0,0 @@ -Data diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu0/cache/index1/level b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu0/cache/index1/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu0/cache/index1/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu0/cache/index1/shared_cpu_map b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu0/cache/index1/shared_cpu_map deleted file mode 100644 index 6dcc80c7..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu0/cache/index1/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000001 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu0/cache/index1/size b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu0/cache/index1/size deleted file mode 100644 index 176f9414..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu0/cache/index1/size +++ /dev/null @@ -1 +0,0 @@ -512K diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu0/cache/index1/type b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu0/cache/index1/type deleted file mode 100644 index 9a53cbfa..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu0/cache/index1/type +++ /dev/null @@ -1 +0,0 @@ -Instruction diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu0/cache/index2/level b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu0/cache/index2/level deleted file mode 100644 index 0cfbf088..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu0/cache/index2/level +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu0/cache/index2/shared_cpu_map b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu0/cache/index2/shared_cpu_map deleted file mode 100644 index 6dcc80c7..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu0/cache/index2/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000001 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu0/cache/index2/size b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu0/cache/index2/size deleted file mode 100644 index 176f9414..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu0/cache/index2/size +++ /dev/null @@ -1 +0,0 @@ -512K diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu0/cache/index2/type b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu0/cache/index2/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu0/cache/index2/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu0/cache/index3/level b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu0/cache/index3/level deleted file mode 100644 index 00750edc..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu0/cache/index3/level +++ /dev/null @@ -1 +0,0 @@ -3 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu0/cache/index3/shared_cpu_map b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu0/cache/index3/shared_cpu_map deleted file mode 100644 index 6dcc80c7..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu0/cache/index3/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000001 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu0/cache/index3/size b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu0/cache/index3/size deleted file mode 100644 index 25d2efd0..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu0/cache/index3/size +++ /dev/null @@ -1 +0,0 @@ -2048K diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu0/cache/index3/type b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu0/cache/index3/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu0/cache/index3/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu0/topology/core_siblings b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu0/topology/core_siblings deleted file mode 100644 index f3059d84..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu0/topology/core_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00001111 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu0/topology/thread_siblings b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu0/topology/thread_siblings deleted file mode 100644 index 6dcc80c7..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu0/topology/thread_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000001 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu1/cache/index0/level b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu1/cache/index0/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu1/cache/index0/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu1/cache/index0/shared_cpu_map b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu1/cache/index0/shared_cpu_map deleted file mode 100644 index 5e249253..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu1/cache/index0/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000002 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu1/cache/index0/size b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu1/cache/index0/size deleted file mode 100644 index 176f9414..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu1/cache/index0/size +++ /dev/null @@ -1 +0,0 @@ -512K diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu1/cache/index0/type b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu1/cache/index0/type deleted file mode 100644 index 0b7088ec..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu1/cache/index0/type +++ /dev/null @@ -1 +0,0 @@ -Data diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu1/cache/index1/level b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu1/cache/index1/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu1/cache/index1/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu1/cache/index1/shared_cpu_map b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu1/cache/index1/shared_cpu_map deleted file mode 100644 index 5e249253..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu1/cache/index1/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000002 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu1/cache/index1/size b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu1/cache/index1/size deleted file mode 100644 index 176f9414..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu1/cache/index1/size +++ /dev/null @@ -1 +0,0 @@ -512K diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu1/cache/index1/type b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu1/cache/index1/type deleted file mode 100644 index 9a53cbfa..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu1/cache/index1/type +++ /dev/null @@ -1 +0,0 @@ -Instruction diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu1/cache/index2/level b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu1/cache/index2/level deleted file mode 100644 index 0cfbf088..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu1/cache/index2/level +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu1/cache/index2/shared_cpu_map b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu1/cache/index2/shared_cpu_map deleted file mode 100644 index 5e249253..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu1/cache/index2/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000002 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu1/cache/index2/size b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu1/cache/index2/size deleted file mode 100644 index 176f9414..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu1/cache/index2/size +++ /dev/null @@ -1 +0,0 @@ -512K diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu1/cache/index2/type b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu1/cache/index2/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu1/cache/index2/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu1/cache/index3/level b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu1/cache/index3/level deleted file mode 100644 index 00750edc..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu1/cache/index3/level +++ /dev/null @@ -1 +0,0 @@ -3 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu1/cache/index3/shared_cpu_map b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu1/cache/index3/shared_cpu_map deleted file mode 100644 index 5e249253..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu1/cache/index3/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000002 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu1/cache/index3/size b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu1/cache/index3/size deleted file mode 100644 index 25d2efd0..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu1/cache/index3/size +++ /dev/null @@ -1 +0,0 @@ -2048K diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu1/cache/index3/type b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu1/cache/index3/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu1/cache/index3/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu1/topology/core_siblings b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu1/topology/core_siblings deleted file mode 100644 index 3502c18d..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu1/topology/core_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00002222 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu1/topology/thread_siblings b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu1/topology/thread_siblings deleted file mode 100644 index 5e249253..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu1/topology/thread_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000002 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu10/cache/index0/level b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu10/cache/index0/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu10/cache/index0/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu10/cache/index0/shared_cpu_map b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu10/cache/index0/shared_cpu_map deleted file mode 100644 index d8b67036..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu10/cache/index0/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000400 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu10/cache/index0/size b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu10/cache/index0/size deleted file mode 100644 index 176f9414..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu10/cache/index0/size +++ /dev/null @@ -1 +0,0 @@ -512K diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu10/cache/index0/type b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu10/cache/index0/type deleted file mode 100644 index 0b7088ec..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu10/cache/index0/type +++ /dev/null @@ -1 +0,0 @@ -Data diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu10/cache/index1/level b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu10/cache/index1/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu10/cache/index1/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu10/cache/index1/shared_cpu_map b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu10/cache/index1/shared_cpu_map deleted file mode 100644 index d8b67036..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu10/cache/index1/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000400 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu10/cache/index1/size b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu10/cache/index1/size deleted file mode 100644 index 176f9414..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu10/cache/index1/size +++ /dev/null @@ -1 +0,0 @@ -512K diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu10/cache/index1/type b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu10/cache/index1/type deleted file mode 100644 index 9a53cbfa..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu10/cache/index1/type +++ /dev/null @@ -1 +0,0 @@ -Instruction diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu10/cache/index2/level b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu10/cache/index2/level deleted file mode 100644 index 0cfbf088..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu10/cache/index2/level +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu10/cache/index2/shared_cpu_map b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu10/cache/index2/shared_cpu_map deleted file mode 100644 index d8b67036..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu10/cache/index2/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000400 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu10/cache/index2/size b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu10/cache/index2/size deleted file mode 100644 index 176f9414..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu10/cache/index2/size +++ /dev/null @@ -1 +0,0 @@ -512K diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu10/cache/index2/type b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu10/cache/index2/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu10/cache/index2/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu10/cache/index3/level b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu10/cache/index3/level deleted file mode 100644 index 00750edc..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu10/cache/index3/level +++ /dev/null @@ -1 +0,0 @@ -3 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu10/cache/index3/shared_cpu_map b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu10/cache/index3/shared_cpu_map deleted file mode 100644 index d8b67036..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu10/cache/index3/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000400 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu10/cache/index3/size b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu10/cache/index3/size deleted file mode 100644 index 25d2efd0..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu10/cache/index3/size +++ /dev/null @@ -1 +0,0 @@ -2048K diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu10/cache/index3/type b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu10/cache/index3/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu10/cache/index3/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu10/topology/core_siblings b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu10/topology/core_siblings deleted file mode 100644 index b794c99b..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu10/topology/core_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00004444 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu10/topology/thread_siblings b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu10/topology/thread_siblings deleted file mode 100644 index d8b67036..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu10/topology/thread_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000400 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu11/cache/index0/level b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu11/cache/index0/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu11/cache/index0/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu11/cache/index0/shared_cpu_map b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu11/cache/index0/shared_cpu_map deleted file mode 100644 index 8ab497eb..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu11/cache/index0/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000800 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu11/cache/index0/size b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu11/cache/index0/size deleted file mode 100644 index 176f9414..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu11/cache/index0/size +++ /dev/null @@ -1 +0,0 @@ -512K diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu11/cache/index0/type b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu11/cache/index0/type deleted file mode 100644 index 0b7088ec..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu11/cache/index0/type +++ /dev/null @@ -1 +0,0 @@ -Data diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu11/cache/index1/level b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu11/cache/index1/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu11/cache/index1/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu11/cache/index1/shared_cpu_map b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu11/cache/index1/shared_cpu_map deleted file mode 100644 index 8ab497eb..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu11/cache/index1/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000800 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu11/cache/index1/size b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu11/cache/index1/size deleted file mode 100644 index 176f9414..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu11/cache/index1/size +++ /dev/null @@ -1 +0,0 @@ -512K diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu11/cache/index1/type b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu11/cache/index1/type deleted file mode 100644 index 9a53cbfa..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu11/cache/index1/type +++ /dev/null @@ -1 +0,0 @@ -Instruction diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu11/cache/index2/level b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu11/cache/index2/level deleted file mode 100644 index 0cfbf088..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu11/cache/index2/level +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu11/cache/index2/shared_cpu_map b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu11/cache/index2/shared_cpu_map deleted file mode 100644 index 8ab497eb..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu11/cache/index2/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000800 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu11/cache/index2/size b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu11/cache/index2/size deleted file mode 100644 index 176f9414..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu11/cache/index2/size +++ /dev/null @@ -1 +0,0 @@ -512K diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu11/cache/index2/type b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu11/cache/index2/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu11/cache/index2/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu11/cache/index3/level b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu11/cache/index3/level deleted file mode 100644 index 00750edc..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu11/cache/index3/level +++ /dev/null @@ -1 +0,0 @@ -3 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu11/cache/index3/shared_cpu_map b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu11/cache/index3/shared_cpu_map deleted file mode 100644 index 8ab497eb..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu11/cache/index3/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000800 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu11/cache/index3/size b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu11/cache/index3/size deleted file mode 100644 index 25d2efd0..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu11/cache/index3/size +++ /dev/null @@ -1 +0,0 @@ -2048K diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu11/cache/index3/type b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu11/cache/index3/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu11/cache/index3/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu11/topology/core_siblings b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu11/topology/core_siblings deleted file mode 100644 index f982d9ee..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu11/topology/core_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00008888 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu11/topology/thread_siblings b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu11/topology/thread_siblings deleted file mode 100644 index 8ab497eb..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu11/topology/thread_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000800 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu12/cache/index0/level b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu12/cache/index0/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu12/cache/index0/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu12/cache/index0/shared_cpu_map b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu12/cache/index0/shared_cpu_map deleted file mode 100644 index b82cc283..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu12/cache/index0/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00001000 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu12/cache/index0/size b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu12/cache/index0/size deleted file mode 100644 index 176f9414..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu12/cache/index0/size +++ /dev/null @@ -1 +0,0 @@ -512K diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu12/cache/index0/type b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu12/cache/index0/type deleted file mode 100644 index 0b7088ec..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu12/cache/index0/type +++ /dev/null @@ -1 +0,0 @@ -Data diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu12/cache/index1/level b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu12/cache/index1/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu12/cache/index1/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu12/cache/index1/shared_cpu_map b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu12/cache/index1/shared_cpu_map deleted file mode 100644 index b82cc283..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu12/cache/index1/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00001000 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu12/cache/index1/size b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu12/cache/index1/size deleted file mode 100644 index 176f9414..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu12/cache/index1/size +++ /dev/null @@ -1 +0,0 @@ -512K diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu12/cache/index1/type b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu12/cache/index1/type deleted file mode 100644 index 9a53cbfa..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu12/cache/index1/type +++ /dev/null @@ -1 +0,0 @@ -Instruction diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu12/cache/index2/level b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu12/cache/index2/level deleted file mode 100644 index 0cfbf088..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu12/cache/index2/level +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu12/cache/index2/shared_cpu_map b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu12/cache/index2/shared_cpu_map deleted file mode 100644 index b82cc283..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu12/cache/index2/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00001000 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu12/cache/index2/size b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu12/cache/index2/size deleted file mode 100644 index 176f9414..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu12/cache/index2/size +++ /dev/null @@ -1 +0,0 @@ -512K diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu12/cache/index2/type b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu12/cache/index2/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu12/cache/index2/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu12/cache/index3/level b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu12/cache/index3/level deleted file mode 100644 index 00750edc..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu12/cache/index3/level +++ /dev/null @@ -1 +0,0 @@ -3 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu12/cache/index3/shared_cpu_map b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu12/cache/index3/shared_cpu_map deleted file mode 100644 index b82cc283..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu12/cache/index3/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00001000 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu12/cache/index3/size b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu12/cache/index3/size deleted file mode 100644 index 25d2efd0..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu12/cache/index3/size +++ /dev/null @@ -1 +0,0 @@ -2048K diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu12/cache/index3/type b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu12/cache/index3/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu12/cache/index3/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu12/topology/core_siblings b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu12/topology/core_siblings deleted file mode 100644 index f3059d84..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu12/topology/core_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00001111 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu12/topology/thread_siblings b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu12/topology/thread_siblings deleted file mode 100644 index b82cc283..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu12/topology/thread_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00001000 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu13/cache/index0/level b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu13/cache/index0/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu13/cache/index0/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu13/cache/index0/shared_cpu_map b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu13/cache/index0/shared_cpu_map deleted file mode 100644 index b187b642..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu13/cache/index0/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00002000 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu13/cache/index0/size b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu13/cache/index0/size deleted file mode 100644 index 176f9414..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu13/cache/index0/size +++ /dev/null @@ -1 +0,0 @@ -512K diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu13/cache/index0/type b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu13/cache/index0/type deleted file mode 100644 index 0b7088ec..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu13/cache/index0/type +++ /dev/null @@ -1 +0,0 @@ -Data diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu13/cache/index1/level b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu13/cache/index1/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu13/cache/index1/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu13/cache/index1/shared_cpu_map b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu13/cache/index1/shared_cpu_map deleted file mode 100644 index b187b642..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu13/cache/index1/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00002000 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu13/cache/index1/size b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu13/cache/index1/size deleted file mode 100644 index 176f9414..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu13/cache/index1/size +++ /dev/null @@ -1 +0,0 @@ -512K diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu13/cache/index1/type b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu13/cache/index1/type deleted file mode 100644 index 9a53cbfa..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu13/cache/index1/type +++ /dev/null @@ -1 +0,0 @@ -Instruction diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu13/cache/index2/level b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu13/cache/index2/level deleted file mode 100644 index 0cfbf088..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu13/cache/index2/level +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu13/cache/index2/shared_cpu_map b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu13/cache/index2/shared_cpu_map deleted file mode 100644 index b187b642..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu13/cache/index2/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00002000 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu13/cache/index2/size b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu13/cache/index2/size deleted file mode 100644 index 176f9414..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu13/cache/index2/size +++ /dev/null @@ -1 +0,0 @@ -512K diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu13/cache/index2/type b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu13/cache/index2/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu13/cache/index2/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu13/cache/index3/level b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu13/cache/index3/level deleted file mode 100644 index 00750edc..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu13/cache/index3/level +++ /dev/null @@ -1 +0,0 @@ -3 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu13/cache/index3/shared_cpu_map b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu13/cache/index3/shared_cpu_map deleted file mode 100644 index b187b642..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu13/cache/index3/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00002000 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu13/cache/index3/size b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu13/cache/index3/size deleted file mode 100644 index 25d2efd0..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu13/cache/index3/size +++ /dev/null @@ -1 +0,0 @@ -2048K diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu13/cache/index3/type b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu13/cache/index3/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu13/cache/index3/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu13/topology/core_siblings b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu13/topology/core_siblings deleted file mode 100644 index 3502c18d..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu13/topology/core_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00002222 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu13/topology/thread_siblings b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu13/topology/thread_siblings deleted file mode 100644 index b187b642..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu13/topology/thread_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00002000 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu14/cache/index0/level b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu14/cache/index0/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu14/cache/index0/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu14/cache/index0/shared_cpu_map b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu14/cache/index0/shared_cpu_map deleted file mode 100644 index 29de8925..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu14/cache/index0/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00004000 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu14/cache/index0/size b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu14/cache/index0/size deleted file mode 100644 index 176f9414..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu14/cache/index0/size +++ /dev/null @@ -1 +0,0 @@ -512K diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu14/cache/index0/type b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu14/cache/index0/type deleted file mode 100644 index 0b7088ec..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu14/cache/index0/type +++ /dev/null @@ -1 +0,0 @@ -Data diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu14/cache/index1/level b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu14/cache/index1/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu14/cache/index1/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu14/cache/index1/shared_cpu_map b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu14/cache/index1/shared_cpu_map deleted file mode 100644 index 29de8925..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu14/cache/index1/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00004000 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu14/cache/index1/size b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu14/cache/index1/size deleted file mode 100644 index 176f9414..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu14/cache/index1/size +++ /dev/null @@ -1 +0,0 @@ -512K diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu14/cache/index1/type b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu14/cache/index1/type deleted file mode 100644 index 9a53cbfa..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu14/cache/index1/type +++ /dev/null @@ -1 +0,0 @@ -Instruction diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu14/cache/index2/level b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu14/cache/index2/level deleted file mode 100644 index 0cfbf088..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu14/cache/index2/level +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu14/cache/index2/shared_cpu_map b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu14/cache/index2/shared_cpu_map deleted file mode 100644 index 29de8925..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu14/cache/index2/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00004000 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu14/cache/index2/size b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu14/cache/index2/size deleted file mode 100644 index 176f9414..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu14/cache/index2/size +++ /dev/null @@ -1 +0,0 @@ -512K diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu14/cache/index2/type b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu14/cache/index2/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu14/cache/index2/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu14/cache/index3/level b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu14/cache/index3/level deleted file mode 100644 index 00750edc..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu14/cache/index3/level +++ /dev/null @@ -1 +0,0 @@ -3 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu14/cache/index3/shared_cpu_map b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu14/cache/index3/shared_cpu_map deleted file mode 100644 index 29de8925..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu14/cache/index3/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00004000 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu14/cache/index3/size b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu14/cache/index3/size deleted file mode 100644 index 25d2efd0..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu14/cache/index3/size +++ /dev/null @@ -1 +0,0 @@ -2048K diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu14/cache/index3/type b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu14/cache/index3/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu14/cache/index3/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu14/topology/core_siblings b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu14/topology/core_siblings deleted file mode 100644 index b794c99b..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu14/topology/core_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00004444 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu14/topology/thread_siblings b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu14/topology/thread_siblings deleted file mode 100644 index 29de8925..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu14/topology/thread_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00004000 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu15/cache/index0/level b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu15/cache/index0/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu15/cache/index0/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu15/cache/index0/shared_cpu_map b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu15/cache/index0/shared_cpu_map deleted file mode 100644 index a3390b3f..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu15/cache/index0/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00008000 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu15/cache/index0/size b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu15/cache/index0/size deleted file mode 100644 index 176f9414..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu15/cache/index0/size +++ /dev/null @@ -1 +0,0 @@ -512K diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu15/cache/index0/type b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu15/cache/index0/type deleted file mode 100644 index 0b7088ec..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu15/cache/index0/type +++ /dev/null @@ -1 +0,0 @@ -Data diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu15/cache/index1/level b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu15/cache/index1/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu15/cache/index1/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu15/cache/index1/shared_cpu_map b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu15/cache/index1/shared_cpu_map deleted file mode 100644 index a3390b3f..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu15/cache/index1/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00008000 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu15/cache/index1/size b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu15/cache/index1/size deleted file mode 100644 index 176f9414..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu15/cache/index1/size +++ /dev/null @@ -1 +0,0 @@ -512K diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu15/cache/index1/type b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu15/cache/index1/type deleted file mode 100644 index 9a53cbfa..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu15/cache/index1/type +++ /dev/null @@ -1 +0,0 @@ -Instruction diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu15/cache/index2/level b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu15/cache/index2/level deleted file mode 100644 index 0cfbf088..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu15/cache/index2/level +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu15/cache/index2/shared_cpu_map b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu15/cache/index2/shared_cpu_map deleted file mode 100644 index a3390b3f..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu15/cache/index2/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00008000 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu15/cache/index2/size b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu15/cache/index2/size deleted file mode 100644 index 176f9414..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu15/cache/index2/size +++ /dev/null @@ -1 +0,0 @@ -512K diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu15/cache/index2/type b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu15/cache/index2/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu15/cache/index2/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu15/cache/index3/level b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu15/cache/index3/level deleted file mode 100644 index 00750edc..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu15/cache/index3/level +++ /dev/null @@ -1 +0,0 @@ -3 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu15/cache/index3/shared_cpu_map b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu15/cache/index3/shared_cpu_map deleted file mode 100644 index a3390b3f..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu15/cache/index3/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00008000 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu15/cache/index3/size b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu15/cache/index3/size deleted file mode 100644 index 25d2efd0..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu15/cache/index3/size +++ /dev/null @@ -1 +0,0 @@ -2048K diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu15/cache/index3/type b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu15/cache/index3/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu15/cache/index3/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu15/topology/core_siblings b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu15/topology/core_siblings deleted file mode 100644 index f982d9ee..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu15/topology/core_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00008888 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu15/topology/thread_siblings b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu15/topology/thread_siblings deleted file mode 100644 index a3390b3f..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu15/topology/thread_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00008000 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu2/cache/index0/level b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu2/cache/index0/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu2/cache/index0/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu2/cache/index0/shared_cpu_map b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu2/cache/index0/shared_cpu_map deleted file mode 100644 index 351374d9..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu2/cache/index0/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000004 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu2/cache/index0/size b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu2/cache/index0/size deleted file mode 100644 index 176f9414..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu2/cache/index0/size +++ /dev/null @@ -1 +0,0 @@ -512K diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu2/cache/index0/type b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu2/cache/index0/type deleted file mode 100644 index 0b7088ec..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu2/cache/index0/type +++ /dev/null @@ -1 +0,0 @@ -Data diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu2/cache/index1/level b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu2/cache/index1/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu2/cache/index1/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu2/cache/index1/shared_cpu_map b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu2/cache/index1/shared_cpu_map deleted file mode 100644 index 351374d9..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu2/cache/index1/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000004 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu2/cache/index1/size b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu2/cache/index1/size deleted file mode 100644 index 176f9414..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu2/cache/index1/size +++ /dev/null @@ -1 +0,0 @@ -512K diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu2/cache/index1/type b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu2/cache/index1/type deleted file mode 100644 index 9a53cbfa..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu2/cache/index1/type +++ /dev/null @@ -1 +0,0 @@ -Instruction diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu2/cache/index2/level b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu2/cache/index2/level deleted file mode 100644 index 0cfbf088..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu2/cache/index2/level +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu2/cache/index2/shared_cpu_map b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu2/cache/index2/shared_cpu_map deleted file mode 100644 index 351374d9..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu2/cache/index2/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000004 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu2/cache/index2/size b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu2/cache/index2/size deleted file mode 100644 index 176f9414..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu2/cache/index2/size +++ /dev/null @@ -1 +0,0 @@ -512K diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu2/cache/index2/type b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu2/cache/index2/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu2/cache/index2/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu2/cache/index3/level b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu2/cache/index3/level deleted file mode 100644 index 00750edc..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu2/cache/index3/level +++ /dev/null @@ -1 +0,0 @@ -3 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu2/cache/index3/shared_cpu_map b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu2/cache/index3/shared_cpu_map deleted file mode 100644 index 351374d9..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu2/cache/index3/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000004 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu2/cache/index3/size b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu2/cache/index3/size deleted file mode 100644 index 25d2efd0..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu2/cache/index3/size +++ /dev/null @@ -1 +0,0 @@ -2048K diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu2/cache/index3/type b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu2/cache/index3/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu2/cache/index3/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu2/topology/core_siblings b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu2/topology/core_siblings deleted file mode 100644 index b794c99b..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu2/topology/core_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00004444 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu2/topology/thread_siblings b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu2/topology/thread_siblings deleted file mode 100644 index 351374d9..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu2/topology/thread_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000004 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu3/cache/index0/level b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu3/cache/index0/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu3/cache/index0/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu3/cache/index0/shared_cpu_map b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu3/cache/index0/shared_cpu_map deleted file mode 100644 index 97676400..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu3/cache/index0/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000008 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu3/cache/index0/size b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu3/cache/index0/size deleted file mode 100644 index 176f9414..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu3/cache/index0/size +++ /dev/null @@ -1 +0,0 @@ -512K diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu3/cache/index0/type b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu3/cache/index0/type deleted file mode 100644 index 0b7088ec..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu3/cache/index0/type +++ /dev/null @@ -1 +0,0 @@ -Data diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu3/cache/index1/level b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu3/cache/index1/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu3/cache/index1/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu3/cache/index1/shared_cpu_map b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu3/cache/index1/shared_cpu_map deleted file mode 100644 index 97676400..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu3/cache/index1/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000008 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu3/cache/index1/size b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu3/cache/index1/size deleted file mode 100644 index 176f9414..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu3/cache/index1/size +++ /dev/null @@ -1 +0,0 @@ -512K diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu3/cache/index1/type b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu3/cache/index1/type deleted file mode 100644 index 9a53cbfa..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu3/cache/index1/type +++ /dev/null @@ -1 +0,0 @@ -Instruction diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu3/cache/index2/level b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu3/cache/index2/level deleted file mode 100644 index 0cfbf088..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu3/cache/index2/level +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu3/cache/index2/shared_cpu_map b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu3/cache/index2/shared_cpu_map deleted file mode 100644 index 97676400..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu3/cache/index2/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000008 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu3/cache/index2/size b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu3/cache/index2/size deleted file mode 100644 index 176f9414..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu3/cache/index2/size +++ /dev/null @@ -1 +0,0 @@ -512K diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu3/cache/index2/type b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu3/cache/index2/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu3/cache/index2/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu3/cache/index3/level b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu3/cache/index3/level deleted file mode 100644 index 00750edc..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu3/cache/index3/level +++ /dev/null @@ -1 +0,0 @@ -3 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu3/cache/index3/shared_cpu_map b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu3/cache/index3/shared_cpu_map deleted file mode 100644 index 97676400..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu3/cache/index3/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000008 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu3/cache/index3/size b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu3/cache/index3/size deleted file mode 100644 index 25d2efd0..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu3/cache/index3/size +++ /dev/null @@ -1 +0,0 @@ -2048K diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu3/cache/index3/type b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu3/cache/index3/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu3/cache/index3/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu3/topology/core_siblings b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu3/topology/core_siblings deleted file mode 100644 index f982d9ee..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu3/topology/core_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00008888 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu3/topology/thread_siblings b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu3/topology/thread_siblings deleted file mode 100644 index 97676400..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu3/topology/thread_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000008 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu4/cache/index0/level b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu4/cache/index0/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu4/cache/index0/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu4/cache/index0/shared_cpu_map b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu4/cache/index0/shared_cpu_map deleted file mode 100644 index 9af614a3..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu4/cache/index0/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000010 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu4/cache/index0/size b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu4/cache/index0/size deleted file mode 100644 index 176f9414..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu4/cache/index0/size +++ /dev/null @@ -1 +0,0 @@ -512K diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu4/cache/index0/type b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu4/cache/index0/type deleted file mode 100644 index 0b7088ec..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu4/cache/index0/type +++ /dev/null @@ -1 +0,0 @@ -Data diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu4/cache/index1/level b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu4/cache/index1/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu4/cache/index1/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu4/cache/index1/shared_cpu_map b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu4/cache/index1/shared_cpu_map deleted file mode 100644 index 9af614a3..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu4/cache/index1/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000010 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu4/cache/index1/size b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu4/cache/index1/size deleted file mode 100644 index 176f9414..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu4/cache/index1/size +++ /dev/null @@ -1 +0,0 @@ -512K diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu4/cache/index1/type b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu4/cache/index1/type deleted file mode 100644 index 9a53cbfa..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu4/cache/index1/type +++ /dev/null @@ -1 +0,0 @@ -Instruction diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu4/cache/index2/level b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu4/cache/index2/level deleted file mode 100644 index 0cfbf088..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu4/cache/index2/level +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu4/cache/index2/shared_cpu_map b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu4/cache/index2/shared_cpu_map deleted file mode 100644 index 9af614a3..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu4/cache/index2/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000010 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu4/cache/index2/size b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu4/cache/index2/size deleted file mode 100644 index 176f9414..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu4/cache/index2/size +++ /dev/null @@ -1 +0,0 @@ -512K diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu4/cache/index2/type b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu4/cache/index2/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu4/cache/index2/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu4/cache/index3/level b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu4/cache/index3/level deleted file mode 100644 index 00750edc..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu4/cache/index3/level +++ /dev/null @@ -1 +0,0 @@ -3 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu4/cache/index3/shared_cpu_map b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu4/cache/index3/shared_cpu_map deleted file mode 100644 index 9af614a3..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu4/cache/index3/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000010 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu4/cache/index3/size b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu4/cache/index3/size deleted file mode 100644 index 25d2efd0..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu4/cache/index3/size +++ /dev/null @@ -1 +0,0 @@ -2048K diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu4/cache/index3/type b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu4/cache/index3/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu4/cache/index3/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu4/topology/core_siblings b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu4/topology/core_siblings deleted file mode 100644 index f3059d84..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu4/topology/core_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00001111 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu4/topology/thread_siblings b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu4/topology/thread_siblings deleted file mode 100644 index 9af614a3..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu4/topology/thread_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000010 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu5/cache/index0/level b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu5/cache/index0/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu5/cache/index0/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu5/cache/index0/shared_cpu_map b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu5/cache/index0/shared_cpu_map deleted file mode 100644 index deed5585..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu5/cache/index0/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000020 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu5/cache/index0/size b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu5/cache/index0/size deleted file mode 100644 index 176f9414..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu5/cache/index0/size +++ /dev/null @@ -1 +0,0 @@ -512K diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu5/cache/index0/type b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu5/cache/index0/type deleted file mode 100644 index 0b7088ec..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu5/cache/index0/type +++ /dev/null @@ -1 +0,0 @@ -Data diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu5/cache/index1/level b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu5/cache/index1/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu5/cache/index1/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu5/cache/index1/shared_cpu_map b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu5/cache/index1/shared_cpu_map deleted file mode 100644 index deed5585..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu5/cache/index1/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000020 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu5/cache/index1/size b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu5/cache/index1/size deleted file mode 100644 index 176f9414..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu5/cache/index1/size +++ /dev/null @@ -1 +0,0 @@ -512K diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu5/cache/index1/type b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu5/cache/index1/type deleted file mode 100644 index 9a53cbfa..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu5/cache/index1/type +++ /dev/null @@ -1 +0,0 @@ -Instruction diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu5/cache/index2/level b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu5/cache/index2/level deleted file mode 100644 index 0cfbf088..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu5/cache/index2/level +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu5/cache/index2/shared_cpu_map b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu5/cache/index2/shared_cpu_map deleted file mode 100644 index deed5585..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu5/cache/index2/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000020 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu5/cache/index2/size b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu5/cache/index2/size deleted file mode 100644 index 176f9414..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu5/cache/index2/size +++ /dev/null @@ -1 +0,0 @@ -512K diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu5/cache/index2/type b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu5/cache/index2/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu5/cache/index2/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu5/cache/index3/level b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu5/cache/index3/level deleted file mode 100644 index 00750edc..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu5/cache/index3/level +++ /dev/null @@ -1 +0,0 @@ -3 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu5/cache/index3/shared_cpu_map b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu5/cache/index3/shared_cpu_map deleted file mode 100644 index deed5585..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu5/cache/index3/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000020 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu5/cache/index3/size b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu5/cache/index3/size deleted file mode 100644 index 25d2efd0..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu5/cache/index3/size +++ /dev/null @@ -1 +0,0 @@ -2048K diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu5/cache/index3/type b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu5/cache/index3/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu5/cache/index3/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu5/topology/core_siblings b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu5/topology/core_siblings deleted file mode 100644 index 3502c18d..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu5/topology/core_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00002222 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu5/topology/thread_siblings b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu5/topology/thread_siblings deleted file mode 100644 index deed5585..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu5/topology/thread_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000020 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu6/cache/index0/level b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu6/cache/index0/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu6/cache/index0/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu6/cache/index0/shared_cpu_map b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu6/cache/index0/shared_cpu_map deleted file mode 100644 index bf4f1c29..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu6/cache/index0/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000040 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu6/cache/index0/size b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu6/cache/index0/size deleted file mode 100644 index 176f9414..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu6/cache/index0/size +++ /dev/null @@ -1 +0,0 @@ -512K diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu6/cache/index0/type b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu6/cache/index0/type deleted file mode 100644 index 0b7088ec..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu6/cache/index0/type +++ /dev/null @@ -1 +0,0 @@ -Data diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu6/cache/index1/level b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu6/cache/index1/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu6/cache/index1/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu6/cache/index1/shared_cpu_map b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu6/cache/index1/shared_cpu_map deleted file mode 100644 index bf4f1c29..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu6/cache/index1/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000040 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu6/cache/index1/size b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu6/cache/index1/size deleted file mode 100644 index 176f9414..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu6/cache/index1/size +++ /dev/null @@ -1 +0,0 @@ -512K diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu6/cache/index1/type b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu6/cache/index1/type deleted file mode 100644 index 9a53cbfa..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu6/cache/index1/type +++ /dev/null @@ -1 +0,0 @@ -Instruction diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu6/cache/index2/level b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu6/cache/index2/level deleted file mode 100644 index 0cfbf088..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu6/cache/index2/level +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu6/cache/index2/shared_cpu_map b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu6/cache/index2/shared_cpu_map deleted file mode 100644 index bf4f1c29..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu6/cache/index2/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000040 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu6/cache/index2/size b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu6/cache/index2/size deleted file mode 100644 index 176f9414..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu6/cache/index2/size +++ /dev/null @@ -1 +0,0 @@ -512K diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu6/cache/index2/type b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu6/cache/index2/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu6/cache/index2/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu6/cache/index3/level b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu6/cache/index3/level deleted file mode 100644 index 00750edc..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu6/cache/index3/level +++ /dev/null @@ -1 +0,0 @@ -3 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu6/cache/index3/shared_cpu_map b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu6/cache/index3/shared_cpu_map deleted file mode 100644 index bf4f1c29..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu6/cache/index3/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000040 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu6/cache/index3/size b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu6/cache/index3/size deleted file mode 100644 index 25d2efd0..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu6/cache/index3/size +++ /dev/null @@ -1 +0,0 @@ -2048K diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu6/cache/index3/type b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu6/cache/index3/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu6/cache/index3/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu6/topology/core_siblings b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu6/topology/core_siblings deleted file mode 100644 index b794c99b..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu6/topology/core_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00004444 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu6/topology/thread_siblings b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu6/topology/thread_siblings deleted file mode 100644 index bf4f1c29..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu6/topology/thread_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000040 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu7/cache/index0/level b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu7/cache/index0/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu7/cache/index0/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu7/cache/index0/shared_cpu_map b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu7/cache/index0/shared_cpu_map deleted file mode 100644 index 92168ad9..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu7/cache/index0/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000080 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu7/cache/index0/size b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu7/cache/index0/size deleted file mode 100644 index 176f9414..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu7/cache/index0/size +++ /dev/null @@ -1 +0,0 @@ -512K diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu7/cache/index0/type b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu7/cache/index0/type deleted file mode 100644 index 0b7088ec..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu7/cache/index0/type +++ /dev/null @@ -1 +0,0 @@ -Data diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu7/cache/index1/level b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu7/cache/index1/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu7/cache/index1/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu7/cache/index1/shared_cpu_map b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu7/cache/index1/shared_cpu_map deleted file mode 100644 index 92168ad9..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu7/cache/index1/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000080 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu7/cache/index1/size b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu7/cache/index1/size deleted file mode 100644 index 176f9414..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu7/cache/index1/size +++ /dev/null @@ -1 +0,0 @@ -512K diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu7/cache/index1/type b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu7/cache/index1/type deleted file mode 100644 index 9a53cbfa..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu7/cache/index1/type +++ /dev/null @@ -1 +0,0 @@ -Instruction diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu7/cache/index2/level b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu7/cache/index2/level deleted file mode 100644 index 0cfbf088..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu7/cache/index2/level +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu7/cache/index2/shared_cpu_map b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu7/cache/index2/shared_cpu_map deleted file mode 100644 index 92168ad9..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu7/cache/index2/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000080 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu7/cache/index2/size b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu7/cache/index2/size deleted file mode 100644 index 176f9414..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu7/cache/index2/size +++ /dev/null @@ -1 +0,0 @@ -512K diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu7/cache/index2/type b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu7/cache/index2/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu7/cache/index2/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu7/cache/index3/level b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu7/cache/index3/level deleted file mode 100644 index 00750edc..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu7/cache/index3/level +++ /dev/null @@ -1 +0,0 @@ -3 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu7/cache/index3/shared_cpu_map b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu7/cache/index3/shared_cpu_map deleted file mode 100644 index 92168ad9..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu7/cache/index3/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000080 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu7/cache/index3/size b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu7/cache/index3/size deleted file mode 100644 index 25d2efd0..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu7/cache/index3/size +++ /dev/null @@ -1 +0,0 @@ -2048K diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu7/cache/index3/type b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu7/cache/index3/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu7/cache/index3/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu7/topology/core_siblings b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu7/topology/core_siblings deleted file mode 100644 index f982d9ee..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu7/topology/core_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00008888 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu7/topology/thread_siblings b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu7/topology/thread_siblings deleted file mode 100644 index 92168ad9..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu7/topology/thread_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000080 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu8/cache/index0/level b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu8/cache/index0/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu8/cache/index0/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu8/cache/index0/shared_cpu_map b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu8/cache/index0/shared_cpu_map deleted file mode 100644 index 8607d0e4..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu8/cache/index0/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000100 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu8/cache/index0/size b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu8/cache/index0/size deleted file mode 100644 index 176f9414..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu8/cache/index0/size +++ /dev/null @@ -1 +0,0 @@ -512K diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu8/cache/index0/type b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu8/cache/index0/type deleted file mode 100644 index 0b7088ec..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu8/cache/index0/type +++ /dev/null @@ -1 +0,0 @@ -Data diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu8/cache/index1/level b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu8/cache/index1/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu8/cache/index1/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu8/cache/index1/shared_cpu_map b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu8/cache/index1/shared_cpu_map deleted file mode 100644 index 8607d0e4..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu8/cache/index1/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000100 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu8/cache/index1/size b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu8/cache/index1/size deleted file mode 100644 index 176f9414..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu8/cache/index1/size +++ /dev/null @@ -1 +0,0 @@ -512K diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu8/cache/index1/type b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu8/cache/index1/type deleted file mode 100644 index 9a53cbfa..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu8/cache/index1/type +++ /dev/null @@ -1 +0,0 @@ -Instruction diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu8/cache/index2/level b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu8/cache/index2/level deleted file mode 100644 index 0cfbf088..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu8/cache/index2/level +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu8/cache/index2/shared_cpu_map b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu8/cache/index2/shared_cpu_map deleted file mode 100644 index 8607d0e4..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu8/cache/index2/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000100 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu8/cache/index2/size b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu8/cache/index2/size deleted file mode 100644 index 176f9414..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu8/cache/index2/size +++ /dev/null @@ -1 +0,0 @@ -512K diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu8/cache/index2/type b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu8/cache/index2/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu8/cache/index2/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu8/cache/index3/level b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu8/cache/index3/level deleted file mode 100644 index 00750edc..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu8/cache/index3/level +++ /dev/null @@ -1 +0,0 @@ -3 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu8/cache/index3/shared_cpu_map b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu8/cache/index3/shared_cpu_map deleted file mode 100644 index 8607d0e4..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu8/cache/index3/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000100 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu8/cache/index3/size b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu8/cache/index3/size deleted file mode 100644 index 25d2efd0..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu8/cache/index3/size +++ /dev/null @@ -1 +0,0 @@ -2048K diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu8/cache/index3/type b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu8/cache/index3/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu8/cache/index3/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu8/topology/core_siblings b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu8/topology/core_siblings deleted file mode 100644 index f3059d84..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu8/topology/core_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00001111 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu8/topology/thread_siblings b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu8/topology/thread_siblings deleted file mode 100644 index 8607d0e4..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu8/topology/thread_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000100 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu9/cache/index0/level b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu9/cache/index0/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu9/cache/index0/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu9/cache/index0/shared_cpu_map b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu9/cache/index0/shared_cpu_map deleted file mode 100644 index 62ebad00..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu9/cache/index0/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000200 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu9/cache/index0/size b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu9/cache/index0/size deleted file mode 100644 index 176f9414..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu9/cache/index0/size +++ /dev/null @@ -1 +0,0 @@ -512K diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu9/cache/index0/type b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu9/cache/index0/type deleted file mode 100644 index 0b7088ec..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu9/cache/index0/type +++ /dev/null @@ -1 +0,0 @@ -Data diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu9/cache/index1/level b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu9/cache/index1/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu9/cache/index1/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu9/cache/index1/shared_cpu_map b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu9/cache/index1/shared_cpu_map deleted file mode 100644 index 62ebad00..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu9/cache/index1/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000200 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu9/cache/index1/size b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu9/cache/index1/size deleted file mode 100644 index 176f9414..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu9/cache/index1/size +++ /dev/null @@ -1 +0,0 @@ -512K diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu9/cache/index1/type b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu9/cache/index1/type deleted file mode 100644 index 9a53cbfa..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu9/cache/index1/type +++ /dev/null @@ -1 +0,0 @@ -Instruction diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu9/cache/index2/level b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu9/cache/index2/level deleted file mode 100644 index 0cfbf088..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu9/cache/index2/level +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu9/cache/index2/shared_cpu_map b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu9/cache/index2/shared_cpu_map deleted file mode 100644 index 62ebad00..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu9/cache/index2/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000200 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu9/cache/index2/size b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu9/cache/index2/size deleted file mode 100644 index 176f9414..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu9/cache/index2/size +++ /dev/null @@ -1 +0,0 @@ -512K diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu9/cache/index2/type b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu9/cache/index2/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu9/cache/index2/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu9/cache/index3/level b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu9/cache/index3/level deleted file mode 100644 index 00750edc..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu9/cache/index3/level +++ /dev/null @@ -1 +0,0 @@ -3 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu9/cache/index3/shared_cpu_map b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu9/cache/index3/shared_cpu_map deleted file mode 100644 index 62ebad00..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu9/cache/index3/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000200 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu9/cache/index3/size b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu9/cache/index3/size deleted file mode 100644 index 25d2efd0..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu9/cache/index3/size +++ /dev/null @@ -1 +0,0 @@ -2048K diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu9/cache/index3/type b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu9/cache/index3/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu9/cache/index3/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu9/topology/core_siblings b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu9/topology/core_siblings deleted file mode 100644 index 3502c18d..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu9/topology/core_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00002222 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu9/topology/thread_siblings b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu9/topology/thread_siblings deleted file mode 100644 index 62ebad00..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/cpu/cpu9/topology/thread_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000200 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/node/node0/cpu0 b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/node/node0/cpu0 deleted file mode 100644 index a8c6fc85..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/node/node0/cpu0 +++ /dev/null @@ -1 +0,0 @@ -../../../../devices/system/cpu/cpu0 \ No newline at end of file diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/node/node0/cpu12 b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/node/node0/cpu12 deleted file mode 100644 index 1b44a959..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/node/node0/cpu12 +++ /dev/null @@ -1 +0,0 @@ -../../../../devices/system/cpu/cpu12 \ No newline at end of file diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/node/node0/cpu4 b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/node/node0/cpu4 deleted file mode 100644 index 3bbc86e4..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/node/node0/cpu4 +++ /dev/null @@ -1 +0,0 @@ -../../../../devices/system/cpu/cpu4 \ No newline at end of file diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/node/node0/cpu8 b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/node/node0/cpu8 deleted file mode 100644 index 695f6cd0..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/node/node0/cpu8 +++ /dev/null @@ -1 +0,0 @@ -../../../../devices/system/cpu/cpu8 \ No newline at end of file diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/node/node0/cpumap b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/node/node0/cpumap deleted file mode 100644 index f3059d84..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/node/node0/cpumap +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00001111 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/node/node1/cpu1 b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/node/node1/cpu1 deleted file mode 100644 index a4064281..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/node/node1/cpu1 +++ /dev/null @@ -1 +0,0 @@ -../../../../devices/system/cpu/cpu1 \ No newline at end of file diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/node/node1/cpu13 b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/node/node1/cpu13 deleted file mode 100644 index abf35524..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/node/node1/cpu13 +++ /dev/null @@ -1 +0,0 @@ -../../../../devices/system/cpu/cpu13 \ No newline at end of file diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/node/node1/cpu5 b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/node/node1/cpu5 deleted file mode 100644 index 226ac758..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/node/node1/cpu5 +++ /dev/null @@ -1 +0,0 @@ -../../../../devices/system/cpu/cpu5 \ No newline at end of file diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/node/node1/cpu9 b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/node/node1/cpu9 deleted file mode 100644 index 00cdda74..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/node/node1/cpu9 +++ /dev/null @@ -1 +0,0 @@ -../../../../devices/system/cpu/cpu9 \ No newline at end of file diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/node/node1/cpumap b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/node/node1/cpumap deleted file mode 100644 index 3502c18d..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/node/node1/cpumap +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00002222 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/node/node2/cpu10 b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/node/node2/cpu10 deleted file mode 100644 index 380cc4ba..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/node/node2/cpu10 +++ /dev/null @@ -1 +0,0 @@ -../../../../devices/system/cpu/cpu10 \ No newline at end of file diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/node/node2/cpu14 b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/node/node2/cpu14 deleted file mode 100644 index 3d2f2420..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/node/node2/cpu14 +++ /dev/null @@ -1 +0,0 @@ -../../../../devices/system/cpu/cpu14 \ No newline at end of file diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/node/node2/cpu2 b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/node/node2/cpu2 deleted file mode 100644 index 782bdd65..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/node/node2/cpu2 +++ /dev/null @@ -1 +0,0 @@ -../../../../devices/system/cpu/cpu2 \ No newline at end of file diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/node/node2/cpu6 b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/node/node2/cpu6 deleted file mode 100644 index 1fae7b06..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/node/node2/cpu6 +++ /dev/null @@ -1 +0,0 @@ -../../../../devices/system/cpu/cpu6 \ No newline at end of file diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/node/node2/cpumap b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/node/node2/cpumap deleted file mode 100644 index b794c99b..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/node/node2/cpumap +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00004444 diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/node/node3/cpu11 b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/node/node3/cpu11 deleted file mode 100644 index 5a3067b6..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/node/node3/cpu11 +++ /dev/null @@ -1 +0,0 @@ -../../../../devices/system/cpu/cpu11 \ No newline at end of file diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/node/node3/cpu15 b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/node/node3/cpu15 deleted file mode 100644 index 0b6a8cf2..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/node/node3/cpu15 +++ /dev/null @@ -1 +0,0 @@ -../../../../devices/system/cpu/cpu15 \ No newline at end of file diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/node/node3/cpu3 b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/node/node3/cpu3 deleted file mode 100644 index ff189f54..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/node/node3/cpu3 +++ /dev/null @@ -1 +0,0 @@ -../../../../devices/system/cpu/cpu3 \ No newline at end of file diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/node/node3/cpu7 b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/node/node3/cpu7 deleted file mode 100644 index 942f0f5d..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/node/node3/cpu7 +++ /dev/null @@ -1 +0,0 @@ -../../../../devices/system/cpu/cpu7 \ No newline at end of file diff --git a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/node/node3/cpumap b/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/node/node3/cpumap deleted file mode 100644 index f982d9ee..00000000 --- a/tests/ts/lscpu/dumps/x86_64-hpdl585/sys/devices/system/node/node3/cpumap +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00008888 diff --git a/tests/ts/lscpu/dumps/x86_64-ibme326m.tar.gz b/tests/ts/lscpu/dumps/x86_64-ibme326m.tar.gz new file mode 100644 index 00000000..5aff52fd Binary files /dev/null and b/tests/ts/lscpu/dumps/x86_64-ibme326m.tar.gz differ diff --git a/tests/ts/lscpu/dumps/x86_64-ibme326m/proc/cpuinfo b/tests/ts/lscpu/dumps/x86_64-ibme326m/proc/cpuinfo deleted file mode 100644 index 0c4c4178..00000000 --- a/tests/ts/lscpu/dumps/x86_64-ibme326m/proc/cpuinfo +++ /dev/null @@ -1,48 +0,0 @@ -processor : 0 -vendor_id : AuthenticAMD -cpu family : 15 -model : 33 -model name : Dual Core AMD Opteron(tm) Processor 270 -stepping : 2 -cpu MHz : 1995.058 -cache size : 1024 KB -physical id : 0 -siblings : 2 -core id : 0 -cpu cores : 2 -fpu : yes -fpu_exception : yes -cpuid level : 1 -wp : yes -flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt lm 3dnowext 3dnow pni lahf_lm cmp_legacy -bogomips : 3992.01 -TLB size : 1024 4K pages -clflush size : 64 -cache_alignment : 64 -address sizes : 40 bits physical, 48 bits virtual -power management: ts fid vid ttp - -processor : 1 -vendor_id : AuthenticAMD -cpu family : 15 -model : 33 -model name : Dual Core AMD Opteron(tm) Processor 270 -stepping : 2 -cpu MHz : 1995.058 -cache size : 1024 KB -physical id : 0 -siblings : 2 -core id : 1 -cpu cores : 2 -fpu : yes -fpu_exception : yes -cpuid level : 1 -wp : yes -flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt lm 3dnowext 3dnow pni lahf_lm cmp_legacy -bogomips : 3989.41 -TLB size : 1024 4K pages -clflush size : 64 -cache_alignment : 64 -address sizes : 40 bits physical, 48 bits virtual -power management: ts fid vid ttp - diff --git a/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu0/cache/index0/level b/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu0/cache/index0/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu0/cache/index0/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu0/cache/index0/shared_cpu_map b/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu0/cache/index0/shared_cpu_map deleted file mode 100644 index 6dcc80c7..00000000 --- a/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu0/cache/index0/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000001 diff --git a/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu0/cache/index0/size b/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu0/cache/index0/size deleted file mode 100644 index 94c87d3e..00000000 --- a/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu0/cache/index0/size +++ /dev/null @@ -1 +0,0 @@ -1024K diff --git a/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu0/cache/index0/type b/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu0/cache/index0/type deleted file mode 100644 index 0b7088ec..00000000 --- a/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu0/cache/index0/type +++ /dev/null @@ -1 +0,0 @@ -Data diff --git a/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu0/cache/index1/level b/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu0/cache/index1/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu0/cache/index1/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu0/cache/index1/shared_cpu_map b/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu0/cache/index1/shared_cpu_map deleted file mode 100644 index 6dcc80c7..00000000 --- a/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu0/cache/index1/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000001 diff --git a/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu0/cache/index1/size b/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu0/cache/index1/size deleted file mode 100644 index 94c87d3e..00000000 --- a/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu0/cache/index1/size +++ /dev/null @@ -1 +0,0 @@ -1024K diff --git a/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu0/cache/index1/type b/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu0/cache/index1/type deleted file mode 100644 index 9a53cbfa..00000000 --- a/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu0/cache/index1/type +++ /dev/null @@ -1 +0,0 @@ -Instruction diff --git a/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu0/cache/index2/level b/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu0/cache/index2/level deleted file mode 100644 index 0cfbf088..00000000 --- a/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu0/cache/index2/level +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu0/cache/index2/shared_cpu_map b/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu0/cache/index2/shared_cpu_map deleted file mode 100644 index 6dcc80c7..00000000 --- a/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu0/cache/index2/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000001 diff --git a/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu0/cache/index2/size b/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu0/cache/index2/size deleted file mode 100644 index 94c87d3e..00000000 --- a/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu0/cache/index2/size +++ /dev/null @@ -1 +0,0 @@ -1024K diff --git a/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu0/cache/index2/type b/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu0/cache/index2/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu0/cache/index2/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu0/topology/core_siblings b/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu0/topology/core_siblings deleted file mode 100644 index 176d3d66..00000000 --- a/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu0/topology/core_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000003 diff --git a/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu0/topology/thread_siblings b/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu0/topology/thread_siblings deleted file mode 100644 index 6dcc80c7..00000000 --- a/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu0/topology/thread_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000001 diff --git a/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu1/cache/index0/level b/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu1/cache/index0/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu1/cache/index0/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu1/cache/index0/shared_cpu_map b/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu1/cache/index0/shared_cpu_map deleted file mode 100644 index 5e249253..00000000 --- a/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu1/cache/index0/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000002 diff --git a/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu1/cache/index0/size b/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu1/cache/index0/size deleted file mode 100644 index 94c87d3e..00000000 --- a/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu1/cache/index0/size +++ /dev/null @@ -1 +0,0 @@ -1024K diff --git a/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu1/cache/index0/type b/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu1/cache/index0/type deleted file mode 100644 index 0b7088ec..00000000 --- a/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu1/cache/index0/type +++ /dev/null @@ -1 +0,0 @@ -Data diff --git a/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu1/cache/index1/level b/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu1/cache/index1/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu1/cache/index1/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu1/cache/index1/shared_cpu_map b/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu1/cache/index1/shared_cpu_map deleted file mode 100644 index 5e249253..00000000 --- a/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu1/cache/index1/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000002 diff --git a/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu1/cache/index1/size b/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu1/cache/index1/size deleted file mode 100644 index 94c87d3e..00000000 --- a/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu1/cache/index1/size +++ /dev/null @@ -1 +0,0 @@ -1024K diff --git a/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu1/cache/index1/type b/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu1/cache/index1/type deleted file mode 100644 index 9a53cbfa..00000000 --- a/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu1/cache/index1/type +++ /dev/null @@ -1 +0,0 @@ -Instruction diff --git a/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu1/cache/index2/level b/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu1/cache/index2/level deleted file mode 100644 index 0cfbf088..00000000 --- a/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu1/cache/index2/level +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu1/cache/index2/shared_cpu_map b/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu1/cache/index2/shared_cpu_map deleted file mode 100644 index 5e249253..00000000 --- a/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu1/cache/index2/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000002 diff --git a/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu1/cache/index2/size b/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu1/cache/index2/size deleted file mode 100644 index 94c87d3e..00000000 --- a/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu1/cache/index2/size +++ /dev/null @@ -1 +0,0 @@ -1024K diff --git a/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu1/cache/index2/type b/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu1/cache/index2/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu1/cache/index2/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu1/topology/core_siblings b/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu1/topology/core_siblings deleted file mode 100644 index 176d3d66..00000000 --- a/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu1/topology/core_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000003 diff --git a/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu1/topology/thread_siblings b/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu1/topology/thread_siblings deleted file mode 100644 index 5e249253..00000000 --- a/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/cpu/cpu1/topology/thread_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000002 diff --git a/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/node/node0/cpu0 b/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/node/node0/cpu0 deleted file mode 100644 index a8c6fc85..00000000 --- a/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/node/node0/cpu0 +++ /dev/null @@ -1 +0,0 @@ -../../../../devices/system/cpu/cpu0 \ No newline at end of file diff --git a/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/node/node0/cpu1 b/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/node/node0/cpu1 deleted file mode 100644 index a4064281..00000000 --- a/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/node/node0/cpu1 +++ /dev/null @@ -1 +0,0 @@ -../../../../devices/system/cpu/cpu1 \ No newline at end of file diff --git a/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/node/node0/cpumap b/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/node/node0/cpumap deleted file mode 100644 index 176d3d66..00000000 --- a/tests/ts/lscpu/dumps/x86_64-ibme326m/sys/devices/system/node/node0/cpumap +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000003 diff --git a/tests/ts/lscpu/dumps/x86_64-necem14.tar.gz b/tests/ts/lscpu/dumps/x86_64-necem14.tar.gz new file mode 100644 index 00000000..00ed35f5 Binary files /dev/null and b/tests/ts/lscpu/dumps/x86_64-necem14.tar.gz differ diff --git a/tests/ts/lscpu/dumps/x86_64-necem14/proc/cpuinfo b/tests/ts/lscpu/dumps/x86_64-necem14/proc/cpuinfo deleted file mode 100644 index c224231d..00000000 --- a/tests/ts/lscpu/dumps/x86_64-necem14/proc/cpuinfo +++ /dev/null @@ -1,46 +0,0 @@ -processor : 0 -vendor_id : GenuineIntel -cpu family : 15 -model : 4 -model name : Intel(R) Xeon(TM) CPU 3.80GHz -stepping : 3 -cpu MHz : 3790.599 -cache size : 2048 KB -physical id : 0 -siblings : 2 -core id : 0 -cpu cores : 1 -fpu : yes -fpu_exception : yes -cpuid level : 5 -wp : yes -flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm syscall lm constant_tsc pni monitor ds_cpl est tm2 cid cx16 xtpr -bogomips : 7583.88 -clflush size : 64 -cache_alignment : 128 -address sizes : 36 bits physical, 48 bits virtual -power management: - -processor : 1 -vendor_id : GenuineIntel -cpu family : 15 -model : 4 -model name : Intel(R) Xeon(TM) CPU 3.80GHz -stepping : 3 -cpu MHz : 3790.599 -cache size : 2048 KB -physical id : 0 -siblings : 2 -core id : 0 -cpu cores : 1 -fpu : yes -fpu_exception : yes -cpuid level : 5 -wp : yes -flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm syscall lm constant_tsc pni monitor ds_cpl est tm2 cid cx16 xtpr -bogomips : 7579.94 -clflush size : 64 -cache_alignment : 128 -address sizes : 36 bits physical, 48 bits virtual -power management: - diff --git a/tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/cpu/cpu0/cache/index0/level b/tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/cpu/cpu0/cache/index0/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/cpu/cpu0/cache/index0/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/cpu/cpu0/cache/index0/shared_cpu_map b/tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/cpu/cpu0/cache/index0/shared_cpu_map deleted file mode 100644 index 176d3d66..00000000 --- a/tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/cpu/cpu0/cache/index0/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000003 diff --git a/tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/cpu/cpu0/cache/index0/size b/tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/cpu/cpu0/cache/index0/size deleted file mode 100644 index 55c7f6dc..00000000 --- a/tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/cpu/cpu0/cache/index0/size +++ /dev/null @@ -1 +0,0 @@ -16K diff --git a/tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/cpu/cpu0/cache/index0/type b/tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/cpu/cpu0/cache/index0/type deleted file mode 100644 index 0b7088ec..00000000 --- a/tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/cpu/cpu0/cache/index0/type +++ /dev/null @@ -1 +0,0 @@ -Data diff --git a/tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/cpu/cpu0/cache/index1/level b/tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/cpu/cpu0/cache/index1/level deleted file mode 100644 index 0cfbf088..00000000 --- a/tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/cpu/cpu0/cache/index1/level +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/cpu/cpu0/cache/index1/shared_cpu_map b/tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/cpu/cpu0/cache/index1/shared_cpu_map deleted file mode 100644 index 176d3d66..00000000 --- a/tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/cpu/cpu0/cache/index1/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000003 diff --git a/tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/cpu/cpu0/cache/index1/size b/tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/cpu/cpu0/cache/index1/size deleted file mode 100644 index 25d2efd0..00000000 --- a/tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/cpu/cpu0/cache/index1/size +++ /dev/null @@ -1 +0,0 @@ -2048K diff --git a/tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/cpu/cpu0/cache/index1/type b/tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/cpu/cpu0/cache/index1/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/cpu/cpu0/cache/index1/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/cpu/cpu0/topology/core_siblings b/tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/cpu/cpu0/topology/core_siblings deleted file mode 100644 index 176d3d66..00000000 --- a/tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/cpu/cpu0/topology/core_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000003 diff --git a/tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/cpu/cpu0/topology/thread_siblings b/tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/cpu/cpu0/topology/thread_siblings deleted file mode 100644 index 176d3d66..00000000 --- a/tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/cpu/cpu0/topology/thread_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000003 diff --git a/tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/cpu/cpu1/cache/index0/level b/tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/cpu/cpu1/cache/index0/level deleted file mode 100644 index d00491fd..00000000 --- a/tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/cpu/cpu1/cache/index0/level +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/cpu/cpu1/cache/index0/shared_cpu_map b/tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/cpu/cpu1/cache/index0/shared_cpu_map deleted file mode 100644 index 176d3d66..00000000 --- a/tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/cpu/cpu1/cache/index0/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000003 diff --git a/tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/cpu/cpu1/cache/index0/size b/tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/cpu/cpu1/cache/index0/size deleted file mode 100644 index 55c7f6dc..00000000 --- a/tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/cpu/cpu1/cache/index0/size +++ /dev/null @@ -1 +0,0 @@ -16K diff --git a/tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/cpu/cpu1/cache/index0/type b/tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/cpu/cpu1/cache/index0/type deleted file mode 100644 index 0b7088ec..00000000 --- a/tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/cpu/cpu1/cache/index0/type +++ /dev/null @@ -1 +0,0 @@ -Data diff --git a/tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/cpu/cpu1/cache/index1/level b/tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/cpu/cpu1/cache/index1/level deleted file mode 100644 index 0cfbf088..00000000 --- a/tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/cpu/cpu1/cache/index1/level +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/cpu/cpu1/cache/index1/shared_cpu_map b/tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/cpu/cpu1/cache/index1/shared_cpu_map deleted file mode 100644 index 176d3d66..00000000 --- a/tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/cpu/cpu1/cache/index1/shared_cpu_map +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000003 diff --git a/tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/cpu/cpu1/cache/index1/size b/tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/cpu/cpu1/cache/index1/size deleted file mode 100644 index 25d2efd0..00000000 --- a/tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/cpu/cpu1/cache/index1/size +++ /dev/null @@ -1 +0,0 @@ -2048K diff --git a/tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/cpu/cpu1/cache/index1/type b/tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/cpu/cpu1/cache/index1/type deleted file mode 100644 index e4fd9dcc..00000000 --- a/tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/cpu/cpu1/cache/index1/type +++ /dev/null @@ -1 +0,0 @@ -Unified diff --git a/tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/cpu/cpu1/topology/core_siblings b/tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/cpu/cpu1/topology/core_siblings deleted file mode 100644 index 176d3d66..00000000 --- a/tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/cpu/cpu1/topology/core_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000003 diff --git a/tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/cpu/cpu1/topology/thread_siblings b/tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/cpu/cpu1/topology/thread_siblings deleted file mode 100644 index 176d3d66..00000000 --- a/tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/cpu/cpu1/topology/thread_siblings +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000003 diff --git a/tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/node/node0/cpu0 b/tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/node/node0/cpu0 deleted file mode 100644 index a8c6fc85..00000000 --- a/tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/node/node0/cpu0 +++ /dev/null @@ -1 +0,0 @@ -../../../../devices/system/cpu/cpu0 \ No newline at end of file diff --git a/tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/node/node0/cpu1 b/tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/node/node0/cpu1 deleted file mode 100644 index a4064281..00000000 --- a/tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/node/node0/cpu1 +++ /dev/null @@ -1 +0,0 @@ -../../../../devices/system/cpu/cpu1 \ No newline at end of file diff --git a/tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/node/node0/cpumap b/tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/node/node0/cpumap deleted file mode 100644 index 176d3d66..00000000 --- a/tests/ts/lscpu/dumps/x86_64-necem14/sys/devices/system/node/node0/cpumap +++ /dev/null @@ -1 +0,0 @@ -00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000003 diff --git a/tests/ts/lscpu/lscpu b/tests/ts/lscpu/lscpu index 1df49616..2c7f2a45 100755 --- a/tests/ts/lscpu/lscpu +++ b/tests/ts/lscpu/lscpu @@ -22,17 +22,23 @@ TS_TOPDIR="$(dirname $0)/../.." ts_init "$*" -for name in $(ls $TS_SELF/dumps/ | sort); do - path=$TS_SELF/dumps/$name +for dump in $(ls $TS_SELF/dumps/*.tar.gz | sort); do + name=$(basename $dump .tar.gz) + dumpdir="$TS_OUTDIR/dumps" + ts_init_subtest $name + mkdir -p $dumpdir + + tar -C $dumpdir -zxf $dump # Architecture information is not applicable with -s. - "${TS_CMD_LSCPU}" -s "${path}" | grep -v "Architecture" \ - >"${TS_OUTPUT}" 2>&1 + "${TS_CMD_LSCPU}" -s "${dumpdir}/${name}" | \ + grep -v "Architecture" >"${TS_OUTPUT}" 2>&1 echo >>"${TS_OUTPUT}" - "${TS_CMD_LSCPU}" -p -s "${path}" >>"${TS_OUTPUT}" 2>&1 + "${TS_CMD_LSCPU}" -p -s "${dumpdir}/${name}" \ + >>"${TS_OUTPUT}" 2>&1 ts_finalize_subtest done -- cgit v1.2.3 From 791ebe90506bfc374995a6fe2e08f01d274ce287 Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Wed, 27 May 2009 16:27:50 +0200 Subject: tests: fix script that creates lscpu dumps Signed-off-by: Karel Zak --- tests/ts/lscpu/mk-input.sh | 33 ++++++++++++--------------------- 1 file changed, 12 insertions(+), 21 deletions(-) diff --git a/tests/ts/lscpu/mk-input.sh b/tests/ts/lscpu/mk-input.sh index 1b2dd0cb..ddf70ec1 100644 --- a/tests/ts/lscpu/mk-input.sh +++ b/tests/ts/lscpu/mk-input.sh @@ -1,16 +1,10 @@ #!/bin/bash # -# Copyright (C) 2008 Karel Zak +# Copyright (C) 2008-2009 Karel Zak # # This script makes a copy of relevant files from /sys and /proc. # The files are usefull for lscpu(1) regression tests. # -# For exmaple: -# -# # mk-lscpu-input ts-lscpu-i386-coolhw -# # lscpu --sysroot dumps/ts-lscpu-i386-coolhw -# - progname=$(basename $0) if [ -z "$1" ]; then @@ -19,30 +13,27 @@ if [ -z "$1" ]; then fi TS_NAME="$1" -TS_INPUT="dumps/$TS_NAME" +TS_DUMP="$TS_NAME" CP="cp -r --parents" -mkdir -p $TS_INPUT/{proc,sys} +mkdir -p $TS_DUMP/{proc,sys} -$CP /proc/cpuinfo $TS_INPUT +$CP /proc/cpuinfo $TS_DUMP -mkdir -p $TS_INPUT/proc/bus/pci -$CP /proc/bus/pci/devices $TS_INPUT +mkdir -p $TS_DUMP/proc/bus/pci +$CP /proc/bus/pci/devices $TS_DUMP if [ -d "/proc/xen" ]; then - mkdir -p $TS_INPUT/proc/xen + mkdir -p $TS_DUMP/proc/xen if [ -f "/proc/xen/capabilities" ]; then - $CP /proc/xen/capabilities $TS_INPUT + $CP /proc/xen/capabilities $TS_DUMP fi fi -for c in $(ls -d /sys/devices/system/cpu/cpu[0-9]*); do - mkdir -p $TS_INPUT/$c -done - -$CP /sys/devices/system/cpu/cpu0/topology/{thread_siblings,core_siblings} $TS_INPUT -$CP /sys/devices/system/cpu/cpu0/cache/*/{type,level,size,shared_cpu_map} $TS_INPUT +$CP /sys/devices/system/cpu/* $TS_DUMP +$CP /sys/devices/system/node/*/cpumap $TS_DUMP -$CP /sys/devices/system/node/*/cpumap $TS_INPUT +tar zcvf $TS_NAME.tar.gz $TS_DUMP +rm -rf $TS_DUMP -- cgit v1.2.3 From 58e5d750ed81ec141193e38d59a47cde50c21714 Mon Sep 17 00:00:00 2001 From: Clytie Siddall Date: Wed, 27 May 2009 21:38:10 +0200 Subject: po: update vi.po (from translationproject.org) --- po/vi.po | 1798 +++++++++++++++++++++++++++----------------------------------- 1 file changed, 786 insertions(+), 1012 deletions(-) diff --git a/po/vi.po b/po/vi.po index 3d9fd138..58a94bd6 100644 --- a/po/vi.po +++ b/po/vi.po @@ -6,10 +6,10 @@ # msgid "" msgstr "" -"Project-Id-Version: util-linux-ng 2.14.2-rc2\n" +"Project-Id-Version: util-linux-ng 2.15-rc2\n" "Report-Msgid-Bugs-To: Karel Zak \n" -"POT-Creation-Date: 2009-04-29 15:34+0200\n" -"PO-Revision-Date: 2009-01-25 23:28+1030\n" +"POT-Creation-Date: 2009-04-17 12:43+0200\n" +"PO-Revision-Date: 2009-05-13 20:37+0930\n" "Last-Translator: Clytie Siddall \n" "Language-Team: Vietnamese \n" "MIME-Version: 1.0\n" @@ -141,17 +141,17 @@ msgstr "sử dụng:\n" #: disk-utils/elvtune.c:53 #, c-format msgid "\tNOTE: elvtune only works with 2.4 kernels\n" -msgstr "" +msgstr "\tGHI CHÚ : elvtune chỉ hoạt động với hạt nhân kiểu 2.4\n" #: disk-utils/elvtune.c:104 -#, fuzzy, c-format +#, c-format msgid "parse error\n" -msgstr "lỗi tìm nơi" +msgstr "lỗi phân tích cú pháp\n" #: disk-utils/elvtune.c:110 #, c-format msgid "missing blockdevice, use -h for help\n" -msgstr "" +msgstr "thiếu thiết bị khối (gõ « -h » để thấy trợ giúp)\n" #: disk-utils/elvtune.c:131 #, c-format @@ -160,6 +160,10 @@ msgid "" "elvtune is only useful on older kernels;\n" "for 2.6 use IO scheduler sysfs tunables instead..\n" msgstr "" +"\n" +"elvtune chỉ có ích với hạt nhân cũ ;\n" +"đối với hạt nhân 2.6, hãy thay thế bằng\n" +"phần mềm định thời V/R sysfs tunables.\n" #: disk-utils/fdformat.c:31 #, c-format @@ -246,66 +250,65 @@ msgstr "" " tập tin\t\t tập tin để thử nghiệm\n" #: disk-utils/fsck.cramfs.c:164 -#, fuzzy, c-format +#, c-format msgid "stat failed: %s" -msgstr "(Tập tin tiếp theo: %s)" +msgstr "lỗi lấy trạng thái: %s" #: disk-utils/fsck.cramfs.c:168 disk-utils/fsck.cramfs.c:552 -#, fuzzy, c-format +#, c-format msgid "open failed: %s" -msgstr "openpty không thành công\n" +msgstr "lỗi mở : %s" #: disk-utils/fsck.cramfs.c:173 #, c-format msgid "ioctl failed: unable to determine device size: %s" -msgstr "" +msgstr "ioctl bị lỗi: không thể xác định kích cỡ thiết bị: %s" #: disk-utils/fsck.cramfs.c:181 -#, fuzzy, c-format +#, c-format msgid "not a block device or file: %s" -msgstr "%s: không phải là thiết bị khối\n" +msgstr "không phải thiết bị khối hay tập tin: %s" #: disk-utils/fsck.cramfs.c:185 disk-utils/fsck.cramfs.c:227 msgid "file length too short" -msgstr "" +msgstr "chiều dài tập tin quá ngắn" #: disk-utils/fsck.cramfs.c:190 disk-utils/fsck.cramfs.c:198 #: disk-utils/fsck.cramfs.c:259 disk-utils/fsck.cramfs.c:279 -#, fuzzy, c-format +#, c-format msgid "read failed: %s" -msgstr "(Tập tin tiếp theo: %s)" +msgstr "lỗi đọc: %s" #: disk-utils/fsck.cramfs.c:208 msgid "superblock magic not found" -msgstr "" +msgstr "không tìm thấy ma thuật siêu khối" #: disk-utils/fsck.cramfs.c:217 -#, fuzzy msgid "unsupported filesystem features" -msgstr "Nhập loại hệ thống tập tin: " +msgstr "gặp tính năng hệ thống tập tin không được hỗ trợ" #: disk-utils/fsck.cramfs.c:220 -#, fuzzy, c-format +#, c-format msgid "superblock size (%d) too small" -msgstr "số khối quá nhỏ" +msgstr "kích cỡ siêu khối (%d) quá nhỏ" #: disk-utils/fsck.cramfs.c:224 msgid "zero file count" -msgstr "" +msgstr "đếm số không tập tin" #: disk-utils/fsck.cramfs.c:230 -#, fuzzy, c-format +#, c-format msgid "warning: file extends past end of filesystem\n" -msgstr "Cảnh báo: phân vùng %s kéo dài quá điểm cuối đĩa\n" +msgstr "cảnh báo: tập tin kéo dài quá điểm cuối hệ thống tập tin\n" #: disk-utils/fsck.cramfs.c:234 #, c-format msgid "warning: old cramfs format\n" -msgstr "" +msgstr "cảnh báo : định dạng cramfs cũ\n" #: disk-utils/fsck.cramfs.c:247 msgid "unable to test CRC: old cramfs format" -msgstr "" +msgstr "không thể thử CRC: định dạng cramfs cũ" #: disk-utils/fsck.cramfs.c:273 disk-utils/fsck.cramfs.c:340 #: disk-utils/fsck.cramfs.c:478 login-utils/chfn.c:529 login-utils/chsh.c:439 @@ -314,172 +317,166 @@ msgid "malloc failed" msgstr "malloc không thành công" #: disk-utils/fsck.cramfs.c:298 -#, fuzzy msgid "crc error" -msgstr ", lỗi" +msgstr "lỗi crc" #: disk-utils/fsck.cramfs.c:365 -#, fuzzy msgid "root inode is not directory" -msgstr "inode gốc không phải là một thư mục" +msgstr "inode gốc không phải thư mục" #: disk-utils/fsck.cramfs.c:370 #, c-format msgid "bad root offset (%lu)" -msgstr "" +msgstr "hiệu gốc sai (%lu)" #: disk-utils/fsck.cramfs.c:388 msgid "data block too large" -msgstr "" +msgstr "khối dữ liệu quá lớn" #: disk-utils/fsck.cramfs.c:392 #, c-format msgid "decompression error %p(%d): %s" -msgstr "" +msgstr "lỗi giải nén %p(%d): %s" #: disk-utils/fsck.cramfs.c:416 -#, fuzzy, c-format +#, c-format msgid " hole at %ld (%zd)\n" -msgstr "phải là (%d, %d, %d)\n" +msgstr " gặp lỗ ở %ld (%zd)\n" #: disk-utils/fsck.cramfs.c:424 disk-utils/fsck.cramfs.c:596 #, c-format msgid " uncompressing block at %ld to %ld (%ld)\n" -msgstr "" +msgstr " đang giải nén khối ở %ld đến %ld (%ld)\n" #: disk-utils/fsck.cramfs.c:430 -#, fuzzy, c-format +#, c-format msgid "non-block (%ld) bytes" -msgstr "Siêu khối: %zd byte\n" +msgstr "khác khối (%ld) byte" #: disk-utils/fsck.cramfs.c:434 #, c-format msgid "non-size (%ld vs %ld) bytes" -msgstr "" +msgstr "khác kích cỡ (%ld vs %ld) byte" #: disk-utils/fsck.cramfs.c:440 -#, fuzzy, c-format +#, c-format msgid "write failed: %s" -msgstr "(Tập tin tiếp theo: %s)" +msgstr "lỗi ghi: %s" #: disk-utils/fsck.cramfs.c:453 -#, fuzzy, c-format +#, c-format msgid "lchown failed: %s" -msgstr "mount (gắn) không thành công" +msgstr "lchown bị lỗi: %s" #: disk-utils/fsck.cramfs.c:459 -#, fuzzy, c-format +#, c-format msgid "chown failed: %s" -msgstr "mount (gắn) không thành công" +msgstr "chown bị lỗi: %s" #: disk-utils/fsck.cramfs.c:466 -#, fuzzy, c-format +#, c-format msgid "utime failed: %s" -msgstr "giá trị thời gian chờ xấu: %s" +msgstr "utime bị lỗi: %s" #: disk-utils/fsck.cramfs.c:481 #, c-format msgid "directory inode has zero offset and non-zero size: %s" -msgstr "" +msgstr "inode thư mục có hiệu số không và kích cỡ khác số không: %s" #: disk-utils/fsck.cramfs.c:495 -#, fuzzy, c-format +#, c-format msgid "mkdir failed: %s" -msgstr "/dev: chdir() không thành công: %m" +msgstr "mkdir bị lỗi: %s" #: disk-utils/fsck.cramfs.c:512 msgid "filename length is zero" -msgstr "" +msgstr "tập tin có tên dài số không" #: disk-utils/fsck.cramfs.c:515 msgid "bad filename length" -msgstr "" +msgstr "tập tin có tên dài sai" #: disk-utils/fsck.cramfs.c:522 -#, fuzzy msgid "bad inode offset" -msgstr "kích cỡ inode xấu" +msgstr "hiệu inode sai" #: disk-utils/fsck.cramfs.c:538 msgid "file inode has zero offset and non-zero size" -msgstr "" +msgstr "inode tập tin có hiệu số không và kích cỡ khác số không" #: disk-utils/fsck.cramfs.c:541 msgid "file inode has zero size and non-zero offset" -msgstr "" +msgstr "inode tập tin có kích cỡ số không và hiệu khác số không" #: disk-utils/fsck.cramfs.c:572 msgid "symbolic link has zero offset" -msgstr "" +msgstr "liên kết tượng trưng có hiệu số không" #: disk-utils/fsck.cramfs.c:575 msgid "symbolic link has zero size" -msgstr "" +msgstr "liên kết tượng trưng có kích cỡ số không" #: disk-utils/fsck.cramfs.c:587 -#, fuzzy, c-format +#, c-format msgid "size error in symlink: %s" -msgstr "lỗi ghi nhớ %s: %s" +msgstr "gặp lỗi kích cỡ trong liên kết tượng trưng: %s" #: disk-utils/fsck.cramfs.c:602 -#, fuzzy, c-format +#, c-format msgid "symlink failed: %s" -msgstr "fsync bị lỗi" +msgstr "liên kết tượng trưng bị lỗi: %s" #: disk-utils/fsck.cramfs.c:614 #, c-format msgid "special file has non-zero offset: %s" -msgstr "" +msgstr "tập tin đặc biệt có hiệu khác số không: %s" #: disk-utils/fsck.cramfs.c:626 #, c-format msgid "fifo has non-zero size: %s" -msgstr "" +msgstr "FIFO có kích cỡ khác số không: %s" #: disk-utils/fsck.cramfs.c:632 #, c-format msgid "socket has non-zero size: %s" -msgstr "" +msgstr "ổ cắm có kích cỡ khác số không: %s" #: disk-utils/fsck.cramfs.c:637 #, c-format msgid "bogus mode: %s (%o)" -msgstr "" +msgstr "chế độ giả: %s (%o)" #: disk-utils/fsck.cramfs.c:647 -#, fuzzy, c-format +#, c-format msgid "mknod failed: %s" -msgstr "mount (gắn) không thành công" +msgstr "mknod bị lỗiT: %s" #: disk-utils/fsck.cramfs.c:683 #, c-format msgid "directory data start (%ld) < sizeof(struct cramfs_super) + start (%ld)" -msgstr "" +msgstr "đầu dữ liệu thư mục (%ld) < kích_cỡ(struct cramfs_super) + đầu (%ld)" #: disk-utils/fsck.cramfs.c:686 #, c-format msgid "directory data end (%ld) != file data start (%ld)" -msgstr "" +msgstr "cuối dữ liệu thư mục (%ld) != đầu dữ liệu tập tin (%ld)" #: disk-utils/fsck.cramfs.c:691 -#, fuzzy msgid "invalid file data offset" -msgstr "id sai: %s\n" +msgstr "sai đặt hiệu dữ liệu tập tin" #: disk-utils/fsck.cramfs.c:715 -#, fuzzy msgid "failed to allocate outbuffer" -msgstr "Không phân phối được bộ đệm.\n" +msgstr "lỗi phân cấp vùng đệm ra" #: disk-utils/fsck.cramfs.c:728 -#, fuzzy msgid "compiled without -x support" -msgstr "umount: không biên dịch hỗ trợ -f\n" +msgstr "biên dịch mà không hỗ trợ -x" #: disk-utils/fsck.minix.c:210 #, c-format msgid "Usage: %s [-larvsmf] /dev/name\n" -msgstr "Sử dụng: %s [-larvsmf] /dev/tên\n" +msgstr "Sử dụng: %s [-larvsmf] /dev/TÊN\n" #: disk-utils/fsck.minix.c:326 #, c-format @@ -507,7 +504,7 @@ msgstr "Vùng nr >= CÁCVÙNG trong tập tin `%s'." #: disk-utils/fsck.minix.c:360 disk-utils/fsck.minix.c:383 msgid "Remove block" -msgstr "Xóa khối" +msgstr "Xoá khối" #: disk-utils/fsck.minix.c:401 #, c-format @@ -928,18 +925,18 @@ msgid "cannot get size of %s" msgstr "không lấy được kích cỡ %s" #: disk-utils/mkfs.bfs.c:188 -#, fuzzy, c-format +#, c-format msgid "blocks argument too large, max is %llu" -msgstr "tham số khối quá lớn, tối đa là %lu" +msgstr "đối số khối quá lớn, tối đa %llu" #: disk-utils/mkfs.bfs.c:203 msgid "too many inodes - max is 512" -msgstr "quá nhiều inode - tối đa là 512" +msgstr "quá nhiều inode - tối đa 512" #: disk-utils/mkfs.bfs.c:212 -#, fuzzy, c-format +#, c-format msgid "not enough space, need at least %llu blocks" -msgstr "Không đủ chỗ trống, cần ít nhất %lu khối" +msgstr "không đủ chỗ trống, cần ít nhất %llu khối" #: disk-utils/mkfs.bfs.c:224 fdisk/fdisk.c:2345 #, c-format @@ -967,14 +964,14 @@ msgid "Inodes: %d (in 1 block)\n" msgstr "Inode: %d (trong 1 khối)\n" #: disk-utils/mkfs.bfs.c:232 -#, fuzzy, c-format +#, c-format msgid "Inodes: %d (in %lld blocks)\n" -msgstr "Inode: %d (trong %ld khối)\n" +msgstr "Inods: %d (trong %lld khối)\n" #: disk-utils/mkfs.bfs.c:234 -#, fuzzy, c-format +#, c-format msgid "Blocks: %lld\n" -msgstr "Khối: %ld\n" +msgstr "Khối: %lld\n" #: disk-utils/mkfs.bfs.c:235 #, c-format @@ -1022,7 +1019,7 @@ msgstr "" #: getopt/getopt.c:86 getopt/getopt.c:96 login-utils/wall.c:246 #, c-format msgid "%s: Out of memory!\n" -msgstr "%s: Hết bộ nhớ.\n" +msgstr "%s: Không đủ bộ nhớ.\n" #: disk-utils/mkfs.c:103 #, c-format @@ -1030,10 +1027,9 @@ msgid "mkfs (%s)\n" msgstr "mkfs (%s)\n" #: disk-utils/mkfs.cramfs.c:126 -#, fuzzy, c-format +#, c-format msgid "" -"usage: %s [-h] [-v] [-b blksize] [-e edition] [-N endian] [-i file] [-n " -"name] dirname outfile\n" +"usage: %s [-h] [-v] [-b blksize] [-e edition] [-N endian] [-i file] [-n name] dirname outfile\n" " -h print this help\n" " -v be verbose\n" " -E make all warnings errors (non-zero exit status)\n" @@ -1048,20 +1044,23 @@ msgid "" " dirname root of the filesystem to be compressed\n" " outfile output file\n" msgstr "" -"Sử dụng: %s [-h] [-v] [-b cỡ_khối] [-e lần_in] [-i tập_tin] [-n tên] " -"tên_thư_mục tập_tin_ra\n" -" -h\t\tin ra trợ giúp này\n" -" -v\t\tthông báo chi tiết\n" -" -E\t\tkhiến tất cả cảnh báo thành lỗi (trạng thái thoát khác không)\n" -" -b cỡ_khối\tsử dụng kích cỡ khối này, phải bằng kích cỡ trang\n" -" -e lần_in\t\tđặt số lần in (một phần của fsid)\n" -" -i tập_tin\tchèn một ảnh tập tin vào hệ thống tập tin (yêu cầu ≥ 2.4.0)\n" +"sử dụng: %s [-h] [-v] [-b cỡ_khối] [-e bản_in] [-N về_cuối] [-i tập_tin] [-n tên] tên_thư_mục tập_tin_ra\n" +" -h hiển thị trợ giúp này\n" +" -v xuất chi tiết\n" +" -E làm cho mọi cảnh báo là lỗi (trạng thái thoát khác số không)\n" +" -b cỡ_khối\tdùng kích cỡ khối này (phải bằng với kích cỡ trang)\n" +" -e bản_in\tđặt số thứ tự bản in (phần của fsid)\n" +" -N về_cuối\tđặt tình trạng cuối cramfs:\n" +"\t\t\t• big\tvề cuối lớn\n" +"\t\t\t• little\tvề cuối nhỏ\n" +"\t\t\t• host\tmáy chủ (mặc định)\n" +" -i tập_tin\tchèn một ảnh tập tin vào hệ thống tập tin (cần ≥2.4.0)\n" " -n tên\tđặt tên của hệ thống tập tin cramfs\n" -" -p\t\tđệm theo %d byte cho mã khởi động\n" -" -s\t\tsắp xếp các mục cho thư mục (tùy chọn cũ, bị lờ đi)\n" -" -z\t\ttạo các hố rõ ràng (yêu cầu ≥ 2.3.39)\n" -" tên_thư_mục\t\tgốc của hệ thống tập tin cần được nén\n" -" tập_tin_ra \t\ttập tin chứa kết quả in ra\n" +" -p đệm theo %d byte cho mã khởi động\n" +" -s sấp xếp các mục nhập thư mục (tùy chọn cũ thì bị lờ đi)\n" +" -z tạo các lỗ dứt khoát (cần ≥2.3.39)\n" +" tên_thư_mục\t\tgốc của hệ thống tập tin cần nén\n" +" tập_tin_ra\t\ttập tin kết xuất\n" #: disk-utils/mkfs.cramfs.c:340 #, c-format @@ -1070,8 +1069,7 @@ msgid "" " Please increase MAX_INPUT_NAMELEN in mkcramfs.c and recompile. Exiting.\n" msgstr "" "Tìm thấy tên tập tin rất dài (%zu bytes) « %s ».\n" -" Xin hãy tăng giá trị « MAX_INPUT_NAMELEN » trong tập tin « mkcramfs.c » rồi " -"biên dịch lại. Đang thoát.\n" +" Xin hãy tăng giá trị « MAX_INPUT_NAMELEN » trong tập tin « mkcramfs.c » rồi biên dịch lại. Đang thoát.\n" #: disk-utils/mkfs.cramfs.c:472 #, c-format @@ -1090,12 +1088,8 @@ msgstr "%6.2f%% (%+ld byte)\t%s\n" #: disk-utils/mkfs.cramfs.c:854 #, c-format -msgid "" -"warning: guestimate of required size (upper bound) is %lldMB, but maximum " -"image size is %uMB. We might die prematurely.\n" -msgstr "" -"cảnh báo : số ước lượng của kích cỡ yêu cầu (giới hạn trên) là %lld MB, " -"nhưng kích cỡ ảnh lớn nhất là %u MB. Chúng ta có thể chết non.\n" +msgid "warning: guestimate of required size (upper bound) is %lldMB, but maximum image size is %uMB. We might die prematurely.\n" +msgstr "cảnh báo : số ước lượng của kích cỡ yêu cầu (giới hạn trên) là %lld MB, nhưng kích cỡ ảnh lớn nhất là %u MB. Chúng ta có thể chết non.\n" #: disk-utils/mkfs.cramfs.c:881 msgid "ROM image map" @@ -1157,19 +1151,13 @@ msgstr "cảnh báo : kích cỡ tập tin bị cắt ngắn thành %luMB (trừ #: disk-utils/mkfs.cramfs.c:958 #, c-format -msgid "" -"warning: uids truncated to %u bits. (This may be a security concern.)\n" -msgstr "" -"cảnh báo : UID bị cắt ngắn thành %u bit. (Đây có thể là sự lo ngại bảo " -"mật.)\n" +msgid "warning: uids truncated to %u bits. (This may be a security concern.)\n" +msgstr "cảnh báo : UID bị cắt ngắn thành %u bit. (Đây có thể là sự lo ngại bảo mật.)\n" #: disk-utils/mkfs.cramfs.c:963 #, c-format -msgid "" -"warning: gids truncated to %u bits. (This may be a security concern.)\n" -msgstr "" -"cảnh báo : GID bị cắt ngắn thành %u bit. (Đây có thể là sự lo ngại bảo " -"mật.)\n" +msgid "warning: gids truncated to %u bits. (This may be a security concern.)\n" +msgstr "cảnh báo : GID bị cắt ngắn thành %u bit. (Đây có thể là sự lo ngại bảo mật.)\n" #: disk-utils/mkfs.cramfs.c:968 #, c-format @@ -1177,8 +1165,7 @@ msgid "" "WARNING: device numbers truncated to %u bits. This almost certainly means\n" "that some device files will be wrong.\n" msgstr "" -"CẢNH BÁO : số thiết bị cắt ngắn thành %u bit. Điều này gần chắc chắn có " -"nghĩa là\n" +"CẢNH BÁO : số thiết bị cắt ngắn thành %u bit. Điều này gần chắc chắn có nghĩa là\n" "một vài tập tin thiết bị sẽ bị hỏng.\n" #: disk-utils/mkfs.minix.c:156 @@ -1193,8 +1180,7 @@ msgstr "%s đã được gắn, sẽ không tạo hệ thống tập tin ở đ #: disk-utils/mkfs.minix.c:190 msgid "seek to boot block failed in write_tables" -msgstr "" -"tìm tới khối khởi động không thành công trong write_tables (ghi các bảng)" +msgstr "tìm tới khối khởi động không thành công trong write_tables (ghi các bảng)" #: disk-utils/mkfs.minix.c:192 msgid "unable to clear boot sector" @@ -1333,8 +1319,7 @@ msgstr "Kích cỡ trang do người dùng chỉ ra xấu %d\n" #: disk-utils/mkswap.c:159 #, c-format msgid "Using user-specified page size %d, instead of the system value %d\n" -msgstr "" -"Sử dụng kích cỡ trang do người dùng chỉ ra %d, thay cho giá trị hệ thống %d\n" +msgstr "Sử dụng kích cỡ trang do người dùng chỉ ra %d, thay cho giá trị hệ thống %d\n" #: disk-utils/mkswap.c:183 #, c-format @@ -1357,11 +1342,9 @@ msgid "no uuid\n" msgstr "không uuid\n" #: disk-utils/mkswap.c:272 -#, fuzzy, c-format +#, c-format msgid "Usage: %s [-c] [-pPAGESZ] [-L label] [-U UUID] /dev/name [blocks]\n" -msgstr "" -"Sử dụng: %s [-c] [-v0|-v1] [-pKÍCH_CỠ_TRANG] [-L nhãn] [-U UUID] /dev/tên " -"[các_khối]\n" +msgstr "Sử dụng: %s [-c] [-pKÍCH_CỠ_TRANG] [-L nhãn] [-U UUID] /dev/tên [các_khối]\n" #: disk-utils/mkswap.c:286 msgid "too many bad pages" @@ -1370,7 +1353,7 @@ msgstr "quá nhiều trang xấu" #: disk-utils/mkswap.c:299 misc-utils/look.c:182 misc-utils/setterm.c:1183 #: text-utils/more.c:1982 text-utils/more.c:1993 msgid "Out of memory" -msgstr "Tràn bộ nhớ" +msgstr "Không đủ bộ nhớ" #: disk-utils/mkswap.c:313 #, c-format @@ -1387,24 +1370,23 @@ msgid "unable to rewind swap-device" msgstr "không thể « tua lại » thiết bị trao đổi" #: disk-utils/mkswap.c:412 -#, fuzzy msgid "unable to erase bootbits sectors" -msgstr "không xóa được rãnh ghi khởi động" +msgstr "không xoá được rãnh ghi bit khởi động" #: disk-utils/mkswap.c:416 #, c-format msgid "%s: %s: warning: don't erase bootbits sectors\n" -msgstr "" +msgstr "%s: %s: cảnh báo : đừng xoá rãnh ghi bit khởi động\n" #: disk-utils/mkswap.c:419 -#, fuzzy, c-format +#, c-format msgid " (%s partition table detected). " -msgstr " p in ra bảng phân vùng BSD" +msgstr " (%s phát hiện được bảng phân vùng). " #: disk-utils/mkswap.c:421 -#, fuzzy, c-format +#, c-format msgid " on whole disk. " -msgstr " s hiển thị nhãn đĩa đầy đủ" +msgstr " trên toàn đĩa. " #: disk-utils/mkswap.c:491 #, c-format @@ -1412,13 +1394,13 @@ msgid "%1$s: warning: ignore -U (UUIDs are unsupported by %1$s)\n" msgstr "%1$s: cảnh báo : bỏ qua « -U » (UUID không phải được %1$s hỗ trợ)\n" #: disk-utils/mkswap.c:507 -#, fuzzy, c-format +#, c-format msgid "%s: does not support swapspace version %d.\n" -msgstr "%s: lỗi: không rõ phiên bản %d\n" +msgstr "%s: không hỗ trợ vùng trao đổi phiên bản %d.\n" #: disk-utils/mkswap.c:515 msgid "error: UUID parsing failed" -msgstr "lỗi: không phân tích được UUID" +msgstr "lỗi: không phân tích được cú pháp của UUID" #: disk-utils/mkswap.c:525 #, c-format @@ -1426,9 +1408,9 @@ msgid "%s: error: Nowhere to set up swap on?\n" msgstr "%s: lỗi: không có chỗ nào để thiết lập bộ nhớ trao đổi ?\n" #: disk-utils/mkswap.c:543 -#, fuzzy, c-format +#, c-format msgid "%s: error: size %llu KiB is larger than device size %llu KiB\n" -msgstr "%s: lỗi: kích cỡ %lu KiB lớn hơn kích cỡ thiết bị %lu KiB\n" +msgstr "%s: lỗi: kích cỡ %llu KiB lớn hơn kích cỡ thiết bị %llu KiB\n" #: disk-utils/mkswap.c:552 #, c-format @@ -1436,9 +1418,9 @@ msgid "%s: error: swap area needs to be at least %ld KiB\n" msgstr "%s: lỗi: vùng trao đổi cần ít nhất %ld KiB\n" #: disk-utils/mkswap.c:569 -#, fuzzy, c-format +#, c-format msgid "%s: warning: truncating swap area to %llu KiB\n" -msgstr "%s: cảnh báo : đang cắt ngắn vùng trao đổi thành %ld KiB\n" +msgstr "%s: cảnh báo : đang cắt ngắn vùng trao đổi thành %llu KiB\n" #: disk-utils/mkswap.c:592 #, c-format @@ -1455,9 +1437,9 @@ msgid "Unable to set up swap-space: unreadable" msgstr "Không thể thiết lập vùng trao đổi: không thể đọc" #: disk-utils/mkswap.c:617 -#, fuzzy, c-format +#, c-format msgid "Setting up swapspace version 1, size = %llu KiB\n" -msgstr "Đang thiết lập vùng trao đổi phiên bản %d, kích cỡ = %llu KiB\n" +msgstr "Đang thiết lập vùng trao đổi phiên bản 1, kích cỡ = %llu KiB\n" #: disk-utils/mkswap.c:628 #, c-format @@ -1491,62 +1473,63 @@ msgid "%s: unable to relabel %s to %s: %s\n" msgstr "%s: không thể đổi nhãn của %s thành %s: %s\n" #: disk-utils/raw.c:50 -#, fuzzy, c-format +#, c-format msgid "" "Usage:\n" " %s " -msgstr "Sử dụng:\n" +msgstr "" +"Sử dụng:\n" +" %s " #: disk-utils/raw.c:122 #, c-format -msgid "" -"Device '%s' is control raw dev (use raw where is greater than zero)\n" -msgstr "" +msgid "Device '%s' is control raw dev (use raw where is greater than zero)\n" +msgstr "Thiết bị « %s » là thiết bị thô điều khiển (hãy dùng thô lớn hơn số không)\n" #: disk-utils/raw.c:130 -#, fuzzy, c-format +#, c-format msgid "Cannot locate raw device '%s' (%s)\n" -msgstr "không thể lấy trạng thái về thiết bị %s" +msgstr "Không tìm thấy thiết bị thô « %s » (%s)\n" #: disk-utils/raw.c:136 -#, fuzzy, c-format +#, c-format msgid "Raw device '%s' is not a character dev\n" -msgstr "/dev/%s: không phải thiết bị ký tự" +msgstr "Thiết bị thô « %s » không phải một thiết bị ký tự\n" #: disk-utils/raw.c:141 -#, fuzzy, c-format +#, c-format msgid "Device '%s' is not a raw dev\n" -msgstr "%s không phải là dòng nối tiếp" +msgstr "Thiết bị « %s » không phải một thiết bị thô\n" #: disk-utils/raw.c:162 -#, fuzzy, c-format +#, c-format msgid "Cannot locate block device '%s' (%s)\n" -msgstr "Không khóa được tập tin khóa (lock file) %s: %s\n" +msgstr "Không tìm thấy thiết bị khối « %s » (%s)\n" #: disk-utils/raw.c:168 -#, fuzzy, c-format +#, c-format msgid "Device '%s' is not a block dev\n" -msgstr "Cảnh báo: %s không phải là thiết bị khối\n" +msgstr "Thiết bị « %s » không phải một thiết bị khối\n" #: disk-utils/raw.c:203 -#, fuzzy, c-format +#, c-format msgid "Cannot open master raw device '" -msgstr "không thể lấy trạng thái về thiết bị %s" +msgstr "Không thể mở thiết bị thô chủ '" #: disk-utils/raw.c:225 #, c-format msgid "Error querying raw device (%s)\n" -msgstr "" +msgstr "Lỗi hỏi thiết bị thô (%s)\n" #: disk-utils/raw.c:235 disk-utils/raw.c:255 #, c-format msgid "raw%d:\tbound to major %d, minor %d\n" -msgstr "" +msgstr "thô%d:\tđóng kết với chính %d, phụ %d\n" #: disk-utils/raw.c:251 -#, fuzzy, c-format +#, c-format msgid "Error setting raw device (%s)\n" -msgstr "lỗi dừng dịch vụ: \"%s\"" +msgstr "Lỗi đặt thiết bị thô (%s)\n" #: fdisk/cfdisk.c:376 fdisk/cfdisk.c:2080 msgid "Unusable" @@ -1600,8 +1583,7 @@ msgstr "Đĩa đã được thay đổi.\n" #: fdisk/cfdisk.c:413 #, c-format msgid "Reboot the system to ensure the partition table is correctly updated.\n" -msgstr "" -"Khởi động lại hệ thống để đảm bảo là bảng phân vùng được cập nhật đúng.\n" +msgstr "Khởi động lại hệ thống để đảm bảo là bảng phân vùng được cập nhật đúng.\n" #: fdisk/cfdisk.c:417 #, c-format @@ -1673,13 +1655,11 @@ msgid "enlarged logical partitions overlap" msgstr "phân vùng lôgíc mở rộng chồng lên nhau" #: fdisk/cfdisk.c:999 -msgid "" -"!!!! Internal error creating logical drive with no extended partition !!!!" +msgid "!!!! Internal error creating logical drive with no extended partition !!!!" msgstr "!!!! Lỗi nội bộ khi tạo các ổ lôgíc mà không có phân vùng mở rộng !!!!" #: fdisk/cfdisk.c:1010 fdisk/cfdisk.c:1022 -msgid "" -"Cannot create logical drive here -- would create two extended partitions" +msgid "Cannot create logical drive here -- would create two extended partitions" msgstr "Không thể tạo ổ lôgíc ở đây -- vì như thế sẽ tạo hai phân vùng mở rộng" #: fdisk/cfdisk.c:1164 @@ -1688,8 +1668,7 @@ msgstr "Mục trình đơn quá dài. Trình đơn có thể trông lạc lõng. #: fdisk/cfdisk.c:1220 msgid "Menu without direction. Defaulting to horizontal." -msgstr "" -"Trình đơn không có phương hướng nên dùng thiết lập mặc định (nằm ngang)." +msgstr "Trình đơn không có phương hướng nên dùng thiết lập mặc định (nằm ngang)." #: fdisk/cfdisk.c:1351 msgid "Illegal key" @@ -1786,11 +1765,8 @@ msgid "Opened disk read-only - you have no permission to write" msgstr "Mở đĩa chỉ đọc - bạn không có quyền ghi" #: fdisk/cfdisk.c:1682 -msgid "" -"Warning!! Unsupported GPT (GUID Partition Table) detected. Use GNU Parted." -msgstr "" -"Cảnh báo : phát hiện GPT (bảng phân vùng GUID) không được hỗ trợ. Hãy dùng " -"chương trình GNU Parted." +msgid "Warning!! Unsupported GPT (GUID Partition Table) detected. Use GNU Parted." +msgstr "Cảnh báo : phát hiện GPT (bảng phân vùng GUID) không được hỗ trợ. Hãy dùng chương trình GNU Parted." #: fdisk/cfdisk.c:1701 msgid "Cannot get disk size" @@ -1809,8 +1785,7 @@ msgid "Warning!! This may destroy data on your disk!" msgstr "Cảnh báo : có thể sẽ xóa hết dữ liệu trên đĩa của bạn." #: fdisk/cfdisk.c:1876 -msgid "" -"Are you sure you want to write the partition table to disk? (yes or no): " +msgid "Are you sure you want to write the partition table to disk? (yes or no): " msgstr "Bạn có chắc muốn ghi bảng phân vùng lên đĩa không? (có hoặc không): " #: fdisk/cfdisk.c:1882 @@ -1838,26 +1813,16 @@ msgid "Wrote partition table to disk" msgstr "Đã ghi bảng phân vùng lên đĩa" #: fdisk/cfdisk.c:1923 -#, fuzzy -msgid "" -"Wrote partition table, but re-read table failed. Run partprobe(8), kpartx" -"(8) or reboot to update table." -msgstr "" -"Đã ghi bảng phân vùng, nhưng việc đọc lại thất bại. Hãy khởi động lại để " -"cập nhật bảng." +msgid "Wrote partition table, but re-read table failed. Run partprobe(8), kpartx(8) or reboot to update table." +msgstr "Đã ghi bảng phân vùng, nhưng không đọc lại được bảng. Hãy chạy công cụ partprobe(8) hay kpartx(8), hoặc khởi động lại để cập nhật bảng." #: fdisk/cfdisk.c:1933 msgid "No primary partitions are marked bootable. DOS MBR cannot boot this." -msgstr "" -"Không có phân vùng chính nào được đánh dấu có thể khởi động. MBR (mục ghi " -"khởi động chủ) của DOS không thể khởi động trong trường hợp này." +msgstr "Không có phân vùng chính nào được đánh dấu có thể khởi động. MBR (mục ghi khởi động chủ) của DOS không thể khởi động trong trường hợp này." #: fdisk/cfdisk.c:1935 -msgid "" -"More than one primary partition is marked bootable. DOS MBR cannot boot this." -msgstr "" -"Có vài phân vùng chính được đánh dấu là có thể khởi động. MBR (mục ghi khởi " -"động chủ) của DOS không thể khởi động trong trường hợp này." +msgid "More than one primary partition is marked bootable. DOS MBR cannot boot this." +msgstr "Có vài phân vùng chính được đánh dấu là có thể khởi động. MBR (mục ghi khởi động chủ) của DOS không thể khởi động trong trường hợp này." #: fdisk/cfdisk.c:1993 fdisk/cfdisk.c:2112 fdisk/cfdisk.c:2196 msgid "Enter filename or press RETURN to display on screen: " @@ -1926,20 +1891,12 @@ msgid " First Last\n" msgstr " Đầu Cuối\n" #: fdisk/cfdisk.c:2134 -msgid "" -" # Type Sector Sector Offset Length Filesystem Type (ID) " -"Flag\n" -msgstr "" -" # Loại Rãnh ghi Rãnh ghi Hiệu Độ dài Kiểu hệ thống tập " -"tin (ID) Cờ\n" +msgid " # Type Sector Sector Offset Length Filesystem Type (ID) Flag\n" +msgstr " # Loại Rãnh ghi Rãnh ghi Hiệu Độ dài Kiểu hệ thống tập tin (ID) Cờ\n" #: fdisk/cfdisk.c:2135 -msgid "" -"-- ------- ----------- ----------- ------ ----------- -------------------- " -"----\n" -msgstr "" -"-- ------- ----------- ----------- ------ ----------- -------------------- " -"----\n" +msgid "-- ------- ----------- ----------- ------ ----------- -------------------- ----\n" +msgstr "-- ------- ----------- ----------- ------ ----------- -------------------- ----\n" #: fdisk/cfdisk.c:2218 msgid " ---Starting---- ----Ending----- Start Number of\n" @@ -1951,8 +1908,7 @@ msgstr " #Cờ Rãnh Đầu Trụ ID Rãnh Đầu Trụ Rãnh ghi R #: fdisk/cfdisk.c:2220 msgid "-- ----- ---- ---- ----- ---- ---- ---- ----- ----------- -----------\n" -msgstr "" -"-- ----- ---- ---- ----- ---- ---- ---- ----- ----------- -----------\n" +msgstr "-- ----- ---- ---- ----- ---- ---- ---- ----- ----------- -----------\n" #: fdisk/cfdisk.c:2253 msgid "Raw" @@ -2020,9 +1976,7 @@ msgstr " d Xóa phân vùng hiện thời" #: fdisk/cfdisk.c:2296 msgid " g Change cylinders, heads, sectors-per-track parameters" -msgstr "" -" g Thay đổi các tham số : cylinders (hình trụ), heads (đầu đọc), " -"sectors-per-track (số rãnh ghi trên mỗi rãnh)" +msgstr " g Thay đổi các tham số : cylinders (hình trụ), heads (đầu đọc), sectors-per-track (số rãnh ghi trên mỗi rãnh)" #: fdisk/cfdisk.c:2297 msgid " WARNING: This option should only be used by people who" @@ -2066,8 +2020,7 @@ msgstr " mà bạn có thể chọn:" #: fdisk/cfdisk.c:2307 msgid " r - Raw data (exactly what would be written to disk)" -msgstr "" -" r - Dữ liệu thô (là những gì chính xác sẽ được ghi lên đĩa)" +msgstr " r - Dữ liệu thô (là những gì chính xác sẽ được ghi lên đĩa)" #: fdisk/cfdisk.c:2308 msgid " s - Table ordered by sectors" @@ -2155,7 +2108,7 @@ msgstr "Thay đổi cấu trúc rãnh ghi" #: fdisk/cfdisk.c:2358 msgid "Done" -msgstr "Xong" +msgstr "Hoàn tất" #: fdisk/cfdisk.c:2358 msgid "Done with changing geometry" @@ -2285,11 +2238,11 @@ msgstr "Bặt tắt khả năng khởi động của phân vùng hiện thời" #: fdisk/cfdisk.c:2745 msgid "Delete" -msgstr "Xóa" +msgstr "Xoá" #: fdisk/cfdisk.c:2745 msgid "Delete the current partition" -msgstr "Xóa phân vùng hiện thời" +msgstr "Xoá phân vùng hiện thời" #: fdisk/cfdisk.c:2746 msgid "Geometry" @@ -2313,9 +2266,7 @@ msgstr "Lớn nhất" #: fdisk/cfdisk.c:2748 msgid "Maximize disk usage of the current partition (experts only)" -msgstr "" -"Đặt phân vùng hiện thời dùng vùng lớn nhất có thể trên đĩa (chỉ dành cho " -"người có kinh nghiệm)" +msgstr "Đặt phân vùng hiện thời dùng vùng lớn nhất có thể trên đĩa (chỉ dành cho người có kinh nghiệm)" #: fdisk/cfdisk.c:2749 msgid "New" @@ -2684,8 +2635,7 @@ msgstr "" #: fdisk/fdiskbsdlabel.c:356 #, c-format msgid "# start end size fstype [fsize bsize cpg]\n" -msgstr "" -"# đầu cuối kích cỡ hệthống [cỡ_tệp cỡ_khối cpg]\n" +msgstr "# đầu cuối kích cỡ hệthống [cỡ_tệp cỡ_khối cpg]\n" #: fdisk/fdiskbsdlabel.c:405 fdisk/fdiskbsdlabel.c:408 #, c-format @@ -2828,8 +2778,7 @@ msgstr "" "V.d.: fdisk /dev/hda (cho đĩa IDE đầu tiên)\n" " hay: fdisk /dev/sdc (cho đĩa SCSI thứ ba)\n" " hay: fdisk /dev/eda (cho ổ PS/2 ESDI đầu tiên)\n" -" hay: fdisk /dev/rd/c0d0 hay: fdisk /dev/ida/c0d0 (cho các thiết bị " -"RAID)\n" +" hay: fdisk /dev/rd/c0d0 hay: fdisk /dev/ida/c0d0 (cho các thiết bị RAID)\n" " ...\n" #: fdisk/fdisk.c:265 @@ -3038,7 +2987,7 @@ msgid "" " (e.g., DOS FDISK, OS/2 FDISK)\n" msgstr "" "\n" -"Số cylinder cho đĩa này được đặt thành %d.\n" +"Số trụ cho đĩa này được đặt thành %d.\n" "Không có gì sai, nhưng số này lớn hơn 1024,\n" "và có thể tạo vấn đề với:\n" "1) phần mềm chạy tại thời điểm khởi động (v.d., phiên bản LILO cũ)\n" @@ -3055,11 +3004,17 @@ msgid "" "partition table format (GPT).\n" "\n" msgstr "" +"\n" +"CẢNH BÁO : đĩa này có kích cỡ %d.%d TB (%llu byte).\n" +"Định dạng bảng phân vùng DOS không dùng được\n" +"trên ổ đĩa có khối tin lớn hơn (%llu byte) cho rãnh ghi %d-byte.\n" +"Hãy dùng công cụ parted(1) và định dạng bảng phân vùng GUID (GPT).\n" +"\n" #: fdisk/fdisk.c:708 #, c-format msgid "Bad offset in primary extended partition\n" -msgstr "Offset xấu trong phân vùng mở rộng chính\n" +msgstr "Hiệu sai trong phân vùng mở rộng chính\n" #: fdisk/fdisk.c:722 #, c-format @@ -3130,9 +3085,7 @@ msgstr "" #: fdisk/fdisk.c:1032 #, c-format -msgid "" -"Device contains neither a valid DOS partition table, nor Sun, SGI or OSF " -"disklabel\n" +msgid "Device contains neither a valid DOS partition table, nor Sun, SGI or OSF disklabel\n" msgstr "Thiết bị chứa một bảng phân vùng DOS, hay Sun, SGI hay OSF bị lỗi\n" #: fdisk/fdisk.c:1049 @@ -3147,12 +3100,8 @@ msgstr "Bỏ qua các phân vùng mở rộng dự phòng %d\n" #: fdisk/fdisk.c:1074 #, c-format -msgid "" -"Warning: invalid flag 0x%04x of partition table %d will be corrected by w" -"(rite)\n" -msgstr "" -"Cảnh báo : cờ 0x%04x của bảng phân vùng %d bị lỗi sẽ được sửa bởi w(rite) " -"(ghi nhớ)\n" +msgid "Warning: invalid flag 0x%04x of partition table %d will be corrected by w(rite)\n" +msgstr "Cảnh báo : cờ 0x%04x của bảng phân vùng %d bị lỗi sẽ được sửa bởi w(rite) (ghi nhớ)\n" #: fdisk/fdisk.c:1096 #, c-format @@ -3318,8 +3267,7 @@ msgstr "Kiểu hệ thống của phân vùng %d chưa thay đổi: %x (%s)\n" #: fdisk/fdisk.c:1591 #, c-format msgid "Partition %d has different physical/logical beginnings (non-Linux?):\n" -msgstr "" -"Phân vùng %d có điểm khởi đầu vật lý/lôgíc khác nhay (không phải Linux?):\n" +msgstr "Phân vùng %d có điểm khởi đầu vật lý/lôgíc khác nhay (không phải Linux?):\n" #: fdisk/fdisk.c:1593 fdisk/fdisk.c:1601 fdisk/fdisk.c:1610 fdisk/fdisk.c:1620 #, c-format @@ -3417,7 +3365,7 @@ msgstr "" #: fdisk/fdisk.c:1826 #, c-format msgid "%*s Boot Start End Blocks Id System\n" -msgstr "%*s Khởiđộng Đầu Cuối Khối Id Hệ thống\n" +msgstr "%*s Khởi_động Đầu Cuối Khối Id Hệ_thống\n" #: fdisk/fdisk.c:1827 fdisk/fdisksgilabel.c:223 fdisk/fdisksunlabel.c:603 msgid "Device" @@ -3446,7 +3394,7 @@ msgstr "" #: fdisk/fdisk.c:1876 #, c-format msgid "Nr AF Hd Sec Cyl Hd Sec Cyl Start Size ID\n" -msgstr "Nr AF Hd Sec Cyl Hd Sec Cyl Đầu Kíchthước ID\n" +msgstr "Nr AF Đầu Rãnh Trụ Đầu Rãnh Trụ Bắt_đầu Cỡ ID\n" #: fdisk/fdisk.c:1922 #, c-format @@ -3494,20 +3442,19 @@ msgid "Logical partition %d not entirely in partition %d\n" msgstr "Phân vùng lôgíc %d không hoàn toàn trong phân vùng %d\n" #: fdisk/fdisk.c:2007 -#, fuzzy, c-format +#, c-format msgid "Total allocated sectors %llu greater than the maximum %llu\n" -msgstr "Tổng số rãnh ghi phân phối %ld lớn hơn tối đa %lld\n" +msgstr "Tổng số rãnh ghi phân phối %llu lớn hơn tối đa %llu\n" #: fdisk/fdisk.c:2010 -#, fuzzy, c-format +#, c-format msgid "%lld unallocated %d-byte sectors\n" -msgstr "%lld rãnh ghi không được phân phối\n" +msgstr "%lld rãnh ghi %d-byte không được phân phối\n" #: fdisk/fdisk.c:2025 fdisk/fdisksgilabel.c:633 fdisk/fdisksunlabel.c:416 #, c-format msgid "Partition %d is already defined. Delete it before re-adding it.\n" -msgstr "" -"Phân vùng %d đã được xác định. Hãy xóa nó trước khi thêm lại lần nữa\n" +msgstr "Phân vùng %d đã được xác định. Hãy xóa nó trước khi thêm lại lần nữa\n" #: fdisk/fdisk.c:2067 #, c-format @@ -3604,7 +3551,7 @@ msgid "Calling ioctl() to re-read partition table.\n" msgstr "Gọi ioctl() để đọc lại bảng phân vùng.\n" #: fdisk/fdisk.c:2296 -#, fuzzy, c-format +#, c-format msgid "" "\n" "WARNING: Re-reading the partition table failed with error %d: %s.\n" @@ -3612,9 +3559,10 @@ msgid "" "the next reboot or after you run partprobe(8) or kpartx(8)\n" msgstr "" "\n" -"CẢNH BÁO: Không thể đọc lại bảng phân vùng với lỗi %d: %s.\n" -"Nhân vẫn đang dùng bảng cũ.\n" -"Bảng mới sẽ được sử dụng tại lần khởi động tiếp theo.\n" +"CẢNH BÁO: thao tác đọc lại bảng phân vùng không thành công (lỗi %d): %s.\n" +"Hạt nhân vẫn còn dùng bảng cũ.\n" +"Bảng mới sẽ được dùng lần kế tiếp khởi động,\n" +"hoặc sau khi bạn chạy công cụ partprobe(8) hay kpartx(8).\n" #: fdisk/fdisk.c:2304 #, c-format @@ -3636,12 +3584,12 @@ msgid "" "Error closing file\n" msgstr "" "\n" -"Lỗi đóng tậ p tin\n" +"Lỗi đóng tập tin\n" #: fdisk/fdisk.c:2314 #, c-format msgid "Syncing disks.\n" -msgstr "Đồng bộ đĩa.\n" +msgstr "Đang đồng bộ hoá các đĩa.\n" #: fdisk/fdisk.c:2361 #, c-format @@ -3677,13 +3625,11 @@ msgstr "Cảnh báo : thiết lập hiệu số rãnh ghi cho tương thích DOS #, c-format msgid "" "\n" -"WARNING: GPT (GUID Partition Table) detected on '%s'! The util fdisk doesn't " -"support GPT. Use GNU Parted.\n" +"WARNING: GPT (GUID Partition Table) detected on '%s'! The util fdisk doesn't support GPT. Use GNU Parted.\n" "\n" msgstr "" "\n" -"CẢNH BÁO : phát hiện GPT (bảng phân vùng GUID) trên « %s ». Tiện ích fdisk " -"không hỗ trợ GPT. Hãy dùng chương trình GNU Parted.\n" +"CẢNH BÁO : phát hiện GPT (bảng phân vùng GUID) trên « %s ». Tiện ích fdisk không hỗ trợ GPT. Hãy dùng chương trình GNU Parted.\n" "\n" #: fdisk/fdisk.c:2533 @@ -3696,7 +3642,7 @@ msgstr "Đĩa %s không chứa một bảng phân vùng hợp lệ\n" msgid "Cannot open %s\n" msgstr "Không thể mở %s\n" -#: fdisk/fdisk.c:2563 fdisk/sfdisk.c:2618 +#: fdisk/fdisk.c:2563 fdisk/sfdisk.c:2617 #, c-format msgid "cannot open %s\n" msgstr "không thể mở %s\n" @@ -3713,12 +3659,8 @@ msgstr "Nhân này tự tìm kích cỡ rãnh ghi - tùy chọn -b bị bỏ qua #: fdisk/fdisk.c:2657 #, c-format -msgid "" -"Warning: the -b (set sector size) option should be used with one specified " -"device\n" -msgstr "" -"Cảnh báo: tùy chọn -b (đặt kích cỡ rãnh ghi) cần sử dụng với một thiết bị " -"xác định\n" +msgid "Warning: the -b (set sector size) option should be used with one specified device\n" +msgstr "Cảnh báo: tùy chọn -b (đặt kích cỡ rãnh ghi) cần sử dụng với một thiết bị xác định\n" #: fdisk/fdisk.c:2717 #, c-format @@ -3856,12 +3798,8 @@ msgstr "Linux RAID" #: fdisk/fdisksgilabel.c:164 #, c-format -msgid "" -"According to MIPS Computer Systems, Inc the Label must not contain more than " -"512 bytes\n" -msgstr "" -"Tùy theo MIPS Computer Systems, Inc. thì Nhãn không được chứa nhiều hơn 512 " -"byte\n" +msgid "According to MIPS Computer Systems, Inc the Label must not contain more than 512 bytes\n" +msgstr "Tùy theo MIPS Computer Systems, Inc. thì Nhãn không được chứa nhiều hơn 512 byte\n" #: fdisk/fdisksgilabel.c:183 #, c-format @@ -4143,11 +4081,9 @@ msgstr "" #: fdisk/fdisksgilabel.c:731 fdisk/fdisksunlabel.c:227 #, c-format msgid "" -"Warning: BLKGETSIZE ioctl failed on %s. Using geometry cylinder value of %" -"d.\n" +"Warning: BLKGETSIZE ioctl failed on %s. Using geometry cylinder value of %d.\n" "This value may be truncated for devices > 33.8 GB.\n" -msgstr "" -"Cảnh báo: BLKGETSIZE ioctl lỗi trên %s. Sử dụng giá trị cấu trúc trụ là %d.\n" +msgstr "Cảnh báo: BLKGETSIZE ioctl lỗi trên %s. Sử dụng giá trị cấu trúc trụ là %d.\n" #: fdisk/fdisksgilabel.c:745 #, c-format @@ -4237,11 +4173,8 @@ msgstr "Tìm thấy nhãn đĩa Sun với số phân vùng (num_partitions) sai #: fdisk/fdisksunlabel.c:168 #, c-format -msgid "" -"Warning: Wrong values need to be fixed up and will be corrected by w(rite)\n" -msgstr "" -"Cảnh báo : các giá trị không đúng cần phải được sửa chữa nên sẽ được sửa bởi " -"w(rite) (ghi nhớ)\n" +msgid "Warning: Wrong values need to be fixed up and will be corrected by w(rite)\n" +msgstr "Cảnh báo : các giá trị không đúng cần phải được sửa chữa nên sẽ được sửa bởi w(rite) (ghi nhớ)\n" #: fdisk/fdisksunlabel.c:198 #, c-format @@ -4532,7 +4465,7 @@ msgstr "QNX4.x phần 3" #: fdisk/i386_sys_types.c:40 msgid "OnTrack DM" -msgstr "OnRãnh DM" +msgstr "OnTrack DM" #: fdisk/i386_sys_types.c:41 msgid "OnTrack DM6 Aux1" @@ -4548,7 +4481,7 @@ msgstr "OnTrack DM6 Aux3" #: fdisk/i386_sys_types.c:44 msgid "OnTrackDM6" -msgstr "OnRãnhDM6" +msgstr "OnTrackDM6" #: fdisk/i386_sys_types.c:45 msgid "EZ-Drive" @@ -4605,7 +4538,7 @@ msgstr "OS/2 ổ đĩa C: ẩn" #: fdisk/i386_sys_types.c:59 msgid "Linux extended" -msgstr "Mở rộng Linux" +msgstr "Linux mở rộng" #: fdisk/i386_sys_types.c:60 fdisk/i386_sys_types.c:61 msgid "NTFS volume set" @@ -4613,7 +4546,7 @@ msgstr "Bộ khối tin NTFS" #: fdisk/i386_sys_types.c:62 msgid "Linux plaintext" -msgstr "Văn bản đơn giản Linux" +msgstr "Linux nhập thô" #: fdisk/i386_sys_types.c:64 msgid "Amoeba" @@ -4656,9 +4589,8 @@ msgid "Darwin boot" msgstr "Khởi động Darwin" #: fdisk/i386_sys_types.c:74 -#, fuzzy msgid "HFS / HFS+" -msgstr "OS/2 HPFS" +msgstr "HFS / HFS+" #: fdisk/i386_sys_types.c:75 msgid "BSDI fs" @@ -4886,28 +4818,18 @@ msgstr "" #: fdisk/sfdisk.c:610 #, c-format -msgid "" -"%s of partition %s has impossible value for head: %lu (should be in 0-%lu)\n" -msgstr "" -"%s của phân vùng %s có số đầu đọc không thể có: %lu (phải trong khoảng 0-%" -"lu)\n" +msgid "%s of partition %s has impossible value for head: %lu (should be in 0-%lu)\n" +msgstr "%s của phân vùng %s có số đầu đọc không thể có: %lu (phải trong khoảng 0-%lu)\n" #: fdisk/sfdisk.c:615 #, c-format -msgid "" -"%s of partition %s has impossible value for sector: %lu (should be in 1-%" -"lu)\n" -msgstr "" -"%s của phân vùng %s có số rãnh ghi không thể có: %lu (phải trong khoảng 1-%" -"lu)\n" +msgid "%s of partition %s has impossible value for sector: %lu (should be in 1-%lu)\n" +msgstr "%s của phân vùng %s có số rãnh ghi không thể có: %lu (phải trong khoảng 1-%lu)\n" #: fdisk/sfdisk.c:620 #, c-format -msgid "" -"%s of partition %s has impossible value for cylinders: %lu (should be in 0-%" -"lu)\n" -msgstr "" -"%s của phân vùng %s có số trụ không thể có: %lu (phải trong khoảng 1-%lu)\n" +msgid "%s of partition %s has impossible value for cylinders: %lu (should be in 0-%lu)\n" +msgstr "%s của phân vùng %s có số trụ không thể có: %lu (phải trong khoảng 1-%lu)\n" #: fdisk/sfdisk.c:660 #, c-format @@ -4915,7 +4837,7 @@ msgid "" "Id Name\n" "\n" msgstr "" -"Tên Id\n" +"Id Tên\n" "\n" #: fdisk/sfdisk.c:821 @@ -4924,14 +4846,15 @@ msgid "Re-reading the partition table ...\n" msgstr "Đang đọc lại bảng phân vùng ...\n" #: fdisk/sfdisk.c:827 -#, fuzzy msgid "" "The command to re-read the partition table failed.\n" "Run partprobe(8), kpartx(8) or reboot your system now,\n" "before using mkfs\n" msgstr "" -"Lỗi chạy lệnh đọc lại bảng phân vùng\n" -"Khởi động lại hệ thống ngay bây giờ trước khi sử dụng mkfs\n" +"Lỗi chạy câu lệnh đọc lại bảng phân vùng.\n" +"Hãy chạy công cụ partprobe(8) hay kpartx(8),\n" +"hoặc khởi động lại hệ thống ngay bây giờ,\n" +"trước khi dùng mkfs.\n" #: fdisk/sfdisk.c:833 #, c-format @@ -5180,10 +5103,8 @@ msgstr "đầu" #: fdisk/sfdisk.c:1356 #, c-format -msgid "" -"partition %s: start: (c,h,s) expected (%ld,%ld,%ld) found (%ld,%ld,%ld)\n" -msgstr "" -"phân vùng %s: đầu: (c,h,s) mong đợi (%ld,%ld,%ld) tìm thấy (%ld,%ld,%ld)\n" +msgid "partition %s: start: (c,h,s) expected (%ld,%ld,%ld) found (%ld,%ld,%ld)\n" +msgstr "phân vùng %s: đầu: (c,h,s) mong đợi (%ld,%ld,%ld) tìm thấy (%ld,%ld,%ld)\n" #: fdisk/sfdisk.c:1362 msgid "end" @@ -5192,8 +5113,7 @@ msgstr "cuối" #: fdisk/sfdisk.c:1365 #, c-format msgid "partition %s: end: (c,h,s) expected (%ld,%ld,%ld) found (%ld,%ld,%ld)\n" -msgstr "" -"phân vùng %s: cuối: (c,h,s) mong đợi (%ld,%ld,%ld) tìm thấy (%ld,%ld,%ld)\n" +msgstr "phân vùng %s: cuối: (c,h,s) mong đợi (%ld,%ld,%ld) tìm thấy (%ld,%ld,%ld)\n" #: fdisk/sfdisk.c:1368 #, c-format @@ -5378,19 +5298,15 @@ msgstr " -l [hay --list]: liệt kê các phân vùng của mỗi thiế #: fdisk/sfdisk.c:2310 msgid " -d [or --dump]: idem, but in a format suitable for later input" -msgstr "" -" -d [hay --dump]: cũng như trên nhưng ở dạng có thể dùng cho nhập vào" +msgstr " -d [hay --dump]: cũng như trên nhưng ở dạng có thể dùng cho nhập vào" #: fdisk/sfdisk.c:2311 msgid " -i [or --increment]: number cylinders etc. from 1 instead of from 0" msgstr " -i [hay --increment]: số trụ v.v... từ 1 thay vì từ 0" #: fdisk/sfdisk.c:2312 -msgid "" -" -uS, -uB, -uC, -uM: accept/report in units of sectors/blocks/cylinders/" -"MB" -msgstr "" -" -uS, -uB, -uC, -uM: chấp nhận/báo cáo với đơn vị rãnh ghi/khối/trụ/MB" +msgid " -uS, -uB, -uC, -uM: accept/report in units of sectors/blocks/cylinders/MB" +msgstr " -uS, -uB, -uC, -uM: chấp nhận/báo cáo với đơn vị rãnh ghi/khối/trụ/MB" #: fdisk/sfdisk.c:2313 msgid " -T [or --list-types]:list the known partition types" @@ -5398,9 +5314,7 @@ msgstr " -T [hay --list-types]:\t\tliệt kê các kiểu phân vùng đã bi #: fdisk/sfdisk.c:2314 msgid " -D [or --DOS]: for DOS-compatibility: waste a little space" -msgstr "" -" -D [hay --DOS]: để tương thích với DOS: lãng phí một chút khoảng " -"trống" +msgstr " -D [hay --DOS]: để tương thích với DOS: lãng phí một chút khoảng trống" #: fdisk/sfdisk.c:2315 msgid " -R [or --re-read]: make kernel reread partition table" @@ -5415,10 +5329,8 @@ msgid " -n : do not actually write to disk" msgstr " -n : không thực sự viết lên đĩa" #: fdisk/sfdisk.c:2318 -msgid "" -" -O file : save the sectors that will be overwritten to file" -msgstr "" -" -O tập tin : ghi các rãnh ghi sẽ bị ghi chèn vào tập tin" +msgid " -O file : save the sectors that will be overwritten to file" +msgstr " -O tập tin : ghi các rãnh ghi sẽ bị ghi chèn vào tập tin" #: fdisk/sfdisk.c:2319 msgid " -I file : restore these sectors again" @@ -5438,15 +5350,11 @@ msgstr "tùy chọn nguy hiểm:" #: fdisk/sfdisk.c:2323 msgid " -g [or --show-geometry]: print the kernel's idea of the geometry" -msgstr "" -" -g [hay --show-geometry]: in ra cấu trúc đĩa theo quan niệm của nhân" +msgstr " -g [hay --show-geometry]: in ra cấu trúc đĩa theo quan niệm của nhân" #: fdisk/sfdisk.c:2324 -msgid "" -" -G [or --show-pt-geometry]: print geometry guessed from the partition " -"table" -msgstr "" -" -G [hay --show-pt-geometry]: in ra cấu trúc dự đoán từ bảng phân vùng" +msgid " -G [or --show-pt-geometry]: print geometry guessed from the partition table" +msgstr " -G [hay --show-pt-geometry]: in ra cấu trúc dự đoán từ bảng phân vùng" #: fdisk/sfdisk.c:2325 msgid "" @@ -5458,11 +5366,8 @@ msgstr "" " trong đầu vào" #: fdisk/sfdisk.c:2327 -msgid "" -" -L [or --Linux]: do not complain about things irrelevant for Linux" -msgstr "" -" -L [hay --Linux]: không than phiền về những gì không thích hợp với " -"Linux" +msgid " -L [or --Linux]: do not complain about things irrelevant for Linux" +msgstr " -L [hay --Linux]: không than phiền về những gì không thích hợp với Linux" #: fdisk/sfdisk.c:2328 msgid " -q [or --quiet]: suppress warning messages" @@ -5504,88 +5409,85 @@ msgstr "%s thiết bị\t\t liệt kê phân vùng kích hoạt trên thiết b #: fdisk/sfdisk.c:2342 #, c-format msgid "%s device n1 n2 ... activate partitions n1 ..., inactivate the rest\n" -msgstr "" -"%s thiết bị n1 n2 ... kích hoạt phân vùng n1 ..., bỏ kích hoạt phần còn lại\n" +msgstr "%s thiết bị n1 n2 ... kích hoạt phân vùng n1 ..., bỏ kích hoạt phần còn lại\n" #: fdisk/sfdisk.c:2343 #, c-format msgid "%s -An device\t activate partition n, inactivate the other ones\n" msgstr "%s -An thiết bị\t kích hoạt phân vùng n, bỏ kích hoạt những cái khác\n" -#: fdisk/sfdisk.c:2463 +#: fdisk/sfdisk.c:2462 #, c-format msgid "" "\n" -"WARNING: GPT (GUID Partition Table) detected on '%s'! The util sfdisk " -"doesn't support GPT. Use GNU Parted.\n" +"WARNING: GPT (GUID Partition Table) detected on '%s'! The util sfdisk doesn't support GPT. Use GNU Parted.\n" "\n" msgstr "" "\n" -"CẢNH BÁO : phát hiện GPT (bảng phân vùng GUID) trên « %s ». Tiện ích sfdisk " -"không hỗ trợ GPT. Hãy dùng chương trình GNU Parted.\n" +"CẢNH BÁO : phát hiện GPT (bảng phân vùng GUID) trên « %s ». Tiện ích sfdisk không hỗ trợ GPT. Hãy dùng chương trình GNU Parted.\n" "\n" -#: fdisk/sfdisk.c:2466 +#: fdisk/sfdisk.c:2465 #, c-format msgid "Use the --force flag to overrule this check.\n" msgstr "Sử dụng cờ « --force » (bắt buộc) để bãi bỏ sự kiểm tra này.\n" -#: fdisk/sfdisk.c:2505 +#: fdisk/sfdisk.c:2504 msgid "no command?\n" msgstr "không lệnh?\n" -#: fdisk/sfdisk.c:2637 +#: fdisk/sfdisk.c:2636 #, c-format msgid "total: %llu blocks\n" msgstr "tổng sô: %llu khối\n" -#: fdisk/sfdisk.c:2680 +#: fdisk/sfdisk.c:2679 msgid "usage: sfdisk --print-id device partition-number\n" msgstr "sử dụng: sfdisk --print-id thiết-bị số-phân-vùng\n" -#: fdisk/sfdisk.c:2682 +#: fdisk/sfdisk.c:2681 msgid "usage: sfdisk --change-id device partition-number Id\n" msgstr "sử dụng: sfdisk --change-id thiết-bị số-phân-vùng Id\n" -#: fdisk/sfdisk.c:2684 +#: fdisk/sfdisk.c:2683 msgid "usage: sfdisk --id device partition-number [Id]\n" msgstr "sử dụng: sfdisk --id thiết-bị số-phân-vùng [Id]\n" -#: fdisk/sfdisk.c:2691 +#: fdisk/sfdisk.c:2690 msgid "can specify only one device (except with -l or -s)\n" msgstr "chỉ có thể chỉ ra một thiết bị (ngoại trừ với -l hay -s)\n" -#: fdisk/sfdisk.c:2717 +#: fdisk/sfdisk.c:2716 #, c-format msgid "cannot open %s read-write\n" msgstr "không thể mở %s đọc-viết\n" -#: fdisk/sfdisk.c:2719 +#: fdisk/sfdisk.c:2718 #, c-format msgid "cannot open %s for reading\n" msgstr "không mở được %s để đọc\n" -#: fdisk/sfdisk.c:2744 +#: fdisk/sfdisk.c:2743 #, c-format msgid "%s: OK\n" msgstr "%s: OK\n" -#: fdisk/sfdisk.c:2763 fdisk/sfdisk.c:2796 +#: fdisk/sfdisk.c:2762 fdisk/sfdisk.c:2795 #, c-format msgid "%s: %ld cylinders, %ld heads, %ld sectors/track\n" msgstr "%s: %ld trụ, %ld đầu đọc, %ld rãnh ghi/trac\n" -#: fdisk/sfdisk.c:2815 +#: fdisk/sfdisk.c:2814 #, c-format msgid "Cannot get size of %s\n" msgstr "Không thể lấy kích cỡ của %s\n" -#: fdisk/sfdisk.c:2895 +#: fdisk/sfdisk.c:2894 #, c-format msgid "bad active byte: 0x%x instead of 0x80\n" msgstr "byte kích hoạt sai: 0x%x thay cho 0x80\n" -#: fdisk/sfdisk.c:2913 fdisk/sfdisk.c:2968 fdisk/sfdisk.c:3001 +#: fdisk/sfdisk.c:2912 fdisk/sfdisk.c:2967 fdisk/sfdisk.c:3000 msgid "" "Done\n" "\n" @@ -5593,7 +5495,7 @@ msgstr "" "Hoàn thành\n" "\n" -#: fdisk/sfdisk.c:2922 +#: fdisk/sfdisk.c:2921 #, c-format msgid "" "You have %d active primary partitions. This does not matter for LILO,\n" @@ -5602,35 +5504,35 @@ msgstr "" "Bạn có %d phân vùng chính kích hoạt. Đây không phải là vấn đề cho LILO,\n" "nhưng MBR của DOS sẽ chỉ khởi động đĩa có 1 phân vùng kích hoạt.\n" -#: fdisk/sfdisk.c:2938 +#: fdisk/sfdisk.c:2937 #, c-format msgid "partition %s has id %x and is not hidden\n" msgstr "phân vùng %s có id %x và không phải là ẩn\n" -#: fdisk/sfdisk.c:2997 +#: fdisk/sfdisk.c:2996 #, c-format msgid "Bad Id %lx\n" msgstr "Id xấu %lx\n" -#: fdisk/sfdisk.c:3014 +#: fdisk/sfdisk.c:3013 msgid "This disk is currently in use.\n" msgstr "Đĩa này hiện đang được sử dụng.\n" -#: fdisk/sfdisk.c:3033 +#: fdisk/sfdisk.c:3032 #, c-format msgid "Fatal error: cannot find %s\n" msgstr "Lỗi nặng: không thể tìm %s\n" -#: fdisk/sfdisk.c:3036 +#: fdisk/sfdisk.c:3035 #, c-format msgid "Warning: %s is not a block device\n" msgstr "Cảnh báo: %s không phải là thiết bị khối\n" -#: fdisk/sfdisk.c:3042 +#: fdisk/sfdisk.c:3041 msgid "Checking that no-one is using this disk right now ...\n" msgstr "Đang kiểm tra xem có ai đó đang sử dụng đĩa này không...\n" -#: fdisk/sfdisk.c:3044 +#: fdisk/sfdisk.c:3043 msgid "" "\n" "This disk is currently in use - repartitioning is probably a bad idea.\n" @@ -5639,34 +5541,33 @@ msgid "" msgstr "" "\n" "Đĩa này hiện thời đang được sử dụng - phân vùng lại không phải là ý muốn\n" -"tốt. Bỏ gắn tất cả các hệ thống tập tin, và tắt (swapoff) các phân vùng trao " -"đổi\n" +"tốt. Bỏ gắn tất cả các hệ thống tập tin, và tắt (swapoff) các phân vùng trao đổi\n" "trên đĩa này. Sử dụng « --no-reread » để bỏ kiểm tra này.\n" -#: fdisk/sfdisk.c:3048 +#: fdisk/sfdisk.c:3047 msgid "Use the --force flag to overrule all checks.\n" msgstr "Sử dụng --force để bãi bỏ mọi kiểm tra.\n" -#: fdisk/sfdisk.c:3052 +#: fdisk/sfdisk.c:3051 msgid "OK\n" msgstr "OK\n" -#: fdisk/sfdisk.c:3061 +#: fdisk/sfdisk.c:3060 #, c-format msgid "Old situation:\n" msgstr "Tình huống cũ:\n" -#: fdisk/sfdisk.c:3065 +#: fdisk/sfdisk.c:3064 #, c-format msgid "Partition %d does not exist, cannot change it\n" msgstr "Phân vùng %d không tồn tại, không thể thay đổi nó\n" -#: fdisk/sfdisk.c:3073 +#: fdisk/sfdisk.c:3072 #, c-format msgid "New situation:\n" msgstr "Tình huống mới:\n" -#: fdisk/sfdisk.c:3078 +#: fdisk/sfdisk.c:3077 msgid "" "I don't like these partitions - nothing changed.\n" "(If you really want this, use the --force option.)\n" @@ -5674,21 +5575,21 @@ msgstr "" "Tôi không thích những phân vùng này - không có gì thay đổi.\n" "(Nếu bạn thực sự muốn điều này, sử dụng tùy chọn --force.)\n" -#: fdisk/sfdisk.c:3081 +#: fdisk/sfdisk.c:3080 msgid "I don't like this - probably you should answer No\n" msgstr "Tôi không thích điều này - bạn nên trả lời No\n" -#: fdisk/sfdisk.c:3086 +#: fdisk/sfdisk.c:3085 #, c-format msgid "Are you satisfied with this? [ynq] " msgstr "Bạn có hài lòng với điều này? [ynq] " -#: fdisk/sfdisk.c:3088 +#: fdisk/sfdisk.c:3087 #, c-format msgid "Do you want to write this to disk? [ynq] " msgstr "Bạn có muốn ghi lên đĩa? [ynq] " -#: fdisk/sfdisk.c:3093 +#: fdisk/sfdisk.c:3092 #, c-format msgid "" "\n" @@ -5697,16 +5598,16 @@ msgstr "" "\n" "sfdisk: dữ liệu vào kết thúc sớm\n" -#: fdisk/sfdisk.c:3095 +#: fdisk/sfdisk.c:3094 msgid "Quitting - nothing changed\n" msgstr "Đang thoát - không có gì thay đổi\n" -#: fdisk/sfdisk.c:3101 +#: fdisk/sfdisk.c:3100 #, c-format msgid "Please answer one of y,n,q\n" msgstr "Xin hãy trả lời một trng y,n,q\n" -#: fdisk/sfdisk.c:3109 +#: fdisk/sfdisk.c:3108 #, c-format msgid "" "Successfully wrote the new partition table\n" @@ -5715,7 +5616,7 @@ msgstr "" "Viết thành công bảng phân vùng mới\n" "\n" -#: fdisk/sfdisk.c:3115 +#: fdisk/sfdisk.c:3114 msgid "" "If you created or changed a DOS partition, /dev/foo7, say, then use dd(1)\n" "to zero the first 512 bytes: dd if=/dev/zero of=/dev/foo7 bs=512 count=1\n" @@ -5726,14 +5627,14 @@ msgstr "" "(Xem fdisk(8).)\n" #: fsck/fsck.c:327 -#, fuzzy, c-format +#, c-format msgid "WARNING: couldn't open %s: %s\n" -msgstr "%s: không mở được %s: %s\n" +msgstr "CẢNH BÁO : không mở được %s: %s\n" #: fsck/fsck.c:337 #, c-format msgid "WARNING: bad format on line %d of %s\n" -msgstr "" +msgstr "CẢNH BÁO : gặp định dạng sai trên dòng %d của %s\n" #: fsck/fsck.c:353 msgid "" @@ -5742,118 +5643,120 @@ msgid "" "\tshould fix your /etc/fstab file as soon as you can.\n" "\n" msgstr "" +"CẢNH BÁO : /etc/fstab của bạn không chứa trường fsck passno.\n" +"\tTiến trình này sẽ điều chỉnh tạm thời, nhưng bạn nên sửa chữa\n" +"\ttập tin /etc/fstab càng sớm càng có thể.\n" +"\n" #: fsck/fsck.c:461 -#, fuzzy, c-format +#, c-format msgid "fsck: %s: not found\n" -msgstr "umount: %s: không tìm thấy" +msgstr "fsck: %s: không tìm thấy\n" #: fsck/fsck.c:577 #, c-format msgid "%s: wait: No more child process?!?\n" -msgstr "" +msgstr "%s: đợi: không có tiến trình con nào nữa ?!?\n" #: fsck/fsck.c:599 #, c-format msgid "Warning... %s for device %s exited with signal %d.\n" -msgstr "" +msgstr "Cảnh báo... %s cho thiết bị %s đã thoát với tín hiệu %d.\n" #: fsck/fsck.c:605 #, c-format msgid "%s %s: status is %x, should never happen.\n" -msgstr "" +msgstr "%s: %s: trạng thái là %x, không bao giờ nên xảy ra.\n" #: fsck/fsck.c:644 #, c-format msgid "Finished with %s (exit status %d)\n" -msgstr "" +msgstr "Đã kết thúc với %s (trạng thái thoát %d)\n" #: fsck/fsck.c:704 #, c-format msgid "%s: Error %d while executing fsck.%s for %s\n" -msgstr "" +msgstr "%s: Lỗi %d trong khi thực hiện fsck.%s cho %s\n" #: fsck/fsck.c:725 msgid "" "Either all or none of the filesystem types passed to -t must be prefixed\n" "with 'no' or '!'.\n" msgstr "" +"Hoặc tất cả hoặc không có kiểu hệ thống tập tin được gửi cho « -t »\n" +"phải có tiền tố « no » hay « ! ».\n" #: fsck/fsck.c:744 -#, fuzzy msgid "Couldn't allocate memory for filesystem types\n" -msgstr "mount: cần chỉ rõ kiểu hệ thống tập tin" +msgstr "Không thể phân cấp bộ nhớ cho kiểu hệ thống tập tin\n" #: fsck/fsck.c:867 #, c-format -msgid "" -"%s: skipping bad line in /etc/fstab: bind mount with nonzero fsck pass " -"number\n" +msgid "%s: skipping bad line in /etc/fstab: bind mount with nonzero fsck pass number\n" msgstr "" +"%s: đang bỏ qua dòng sai trong tập tin « /etc/fstab »:\n" +"điểm lắp đóng kết có số thứ tự lần chạy fsck khác số không\n" #: fsck/fsck.c:894 #, c-format msgid "fsck: cannot check %s: fsck.%s not found\n" -msgstr "" +msgstr "fsck: không thể kiểm tra %s: fsck.%s không tìm thấy\n" #: fsck/fsck.c:950 -#, fuzzy msgid "Checking all file systems.\n" -msgstr "Bắt buộc kiểm tra hệ thống tập tin trên %s.\n" +msgstr "Đang kiểm tra tất cả các hệ thống tập tin.\n" #: fsck/fsck.c:1041 #, c-format msgid "--waiting-- (pass %d)\n" -msgstr "" +msgstr "--đang đợi-- (lần chạy %d)\n" #: fsck/fsck.c:1061 -#, fuzzy -msgid "" -"Usage: fsck [-AMNPRTV] [ -C [ fd ] ] [-t fstype] [fs-options] [filesys ...]\n" +msgid "Usage: fsck [-AMNPRTV] [ -C [ fd ] ] [-t fstype] [fs-options] [filesys ...]\n" msgstr "" -"Sử dụng: mkfs [-V] [-t kiểu_FS] [tùy_chọn_FS] thiết_bị [kích_cỡ]\n" +"Sử dụng: fsck [-AMNPRTV] [ -C [ fd ] ] [-t kiểu_HTTT] [các_tùy_chọn_HTTT] [HTTT ...]\n" "\n" -"FS: hệ thống tập tin\n" +"HTTT: hệ thống tập tin\n" #: fsck/fsck.c:1099 -#, fuzzy, c-format +#, c-format msgid "%s: too many devices\n" -msgstr "%s: %s không phải là thiết bị lp.\n" +msgstr "%s: quá nhiều thiết bị\n" #: fsck/fsck.c:1110 -#, fuzzy, c-format +#, c-format msgid "Couldn't open %s: %s\n" msgstr "Không mở được %s: %s\n" #: fsck/fsck.c:1112 -#, fuzzy, c-format +#, c-format msgid "Is /proc mounted?\n" -msgstr "%s đã bỏ gắn\n" +msgstr "/proc được gắn kết không?\n" #: fsck/fsck.c:1121 #, c-format msgid "Must be root to scan for matching filesystems: %s\n" -msgstr "" +msgstr "Phải là người chủ (root) để quét tìm hệ thống tập tin tương ứng: %s\n" #: fsck/fsck.c:1124 -#, fuzzy, c-format +#, c-format msgid "Couldn't find matching filesystem: %s\n" -msgstr "Đang bỏ gắn mọi hệ thống tập tin nói đến..." +msgstr "Không tìm thấy hệ thống tập tin tương ứng: %s\n" #: fsck/fsck.c:1132 fsck/fsck.c:1218 -#, fuzzy, c-format +#, c-format msgid "%s: too many arguments\n" -msgstr "%s: đối số không rõ: %s\n" +msgstr "%s: quá nhiều đối số\n" #: fsck/fsck.c:1252 -#, fuzzy, c-format +#, c-format msgid "fsck from %s\n" -msgstr "%s từ %s\n" +msgstr "fsck từ %s\n" #: fsck/fsck.c:1264 -#, fuzzy, c-format +#, c-format msgid "%s: Unable to allocate memory for fsck_path\n" -msgstr "Không thể phân phối bộ đệm cho các inode" +msgstr "%s: Không thể phân phối bộ nhớ cho fsck_path\n" #: getopt/getopt.c:229 msgid "Try `getopt --help' for more information.\n" @@ -5884,10 +5787,8 @@ msgid " parameters\n" msgstr " tham số\n" #: getopt/getopt.c:324 -msgid "" -" -a, --alternative Allow long options starting with single -\n" -msgstr "" -" -a, --alternative Cho phép tùy chọn dài bắt đầu với một - đơn\n" +msgid " -a, --alternative Allow long options starting with single -\n" +msgstr " -a, --alternative Cho phép tùy chọn dài bắt đầu với một - đơn\n" #: getopt/getopt.c:325 msgid " -h, --help This small usage guide\n" @@ -5898,8 +5799,7 @@ msgid " -l, --longoptions=longopts Long options to be recognized\n" msgstr " -l, --longoptions=tùychọndài Tùy chọn dài cần nhận ra\n" #: getopt/getopt.c:327 -msgid "" -" -n, --name=progname The name under which errors are reported\n" +msgid " -n, --name=progname The name under which errors are reported\n" msgstr " -n, --name=tên_chương_trình Báo cáo lỗi dưới tên này\n" #: getopt/getopt.c:328 @@ -5971,22 +5871,22 @@ msgstr "%s: %s nguyên tử lỗi sau1000 vòng quay!" #: hwclock/cmos.c:273 #, c-format msgid "cmos_read(): write to control address %X failed: %s\n" -msgstr "" +msgstr "cmos_read(): lỗi ghi vào địa chỉ điều khiển %X: %s\n" #: hwclock/cmos.c:276 #, c-format msgid "cmos_read(): read data address %X failed: %s\n" -msgstr "" +msgstr "cmos_read(): lỗi đọc địa chỉ dữ liệu %X: %s\n" #: hwclock/cmos.c:307 #, c-format msgid "cmos_write(): write to control address %X failed: %s\n" -msgstr "" +msgstr "cmos_write(): lỗi ghi vào địa chỉ điều khiển %X: %s\n" #: hwclock/cmos.c:311 #, c-format msgid "cmos_write(): write to data address %X failed: %s\n" -msgstr "" +msgstr "cmos_write(): lỗi ghi vào địa chỉ dữ liệu %X: %s\n" #: hwclock/cmos.c:574 #, c-format @@ -6001,8 +5901,7 @@ msgstr "Tôi lấy thông tin quyền hạn không thành công vì đã không #: hwclock/cmos.c:584 #, c-format msgid "%s is unable to get I/O port access: the iopl(3) call failed.\n" -msgstr "" -"Không thể dùng %s để lấy truy cập cổng V/R: gọi iopl(3) không thành công.\n" +msgstr "Không thể dùng %s để lấy truy cập cổng V/R: gọi iopl(3) không thành công.\n" #: hwclock/cmos.c:587 #, c-format @@ -6025,8 +5924,7 @@ msgstr "nội bộ" #: hwclock/hwclock.c:312 #, c-format msgid "%s: Warning: unrecognized third line in adjtime file\n" -msgstr "" -"%s: Cảnh báo: không nhận ra dòng thứ ba trong tập tin điều chỉnh thời gian\n" +msgstr "%s: Cảnh báo: không nhận ra dòng thứ ba trong tập tin điều chỉnh thời gian\n" #: hwclock/hwclock.c:314 #, c-format @@ -6060,7 +5958,7 @@ msgstr "Chờ tiếng tíc tắc của đồng hồ...\n" #: hwclock/hwclock.c:357 #, c-format msgid "...synchronization failed\n" -msgstr "" +msgstr "...lỗi đồng bộ hoá\n" #: hwclock/hwclock.c:359 #, c-format @@ -6070,15 +5968,12 @@ msgstr "...đã nghe thấy tiếng tíc tắc\n" #: hwclock/hwclock.c:413 #, c-format msgid "Invalid values in hardware clock: %4d/%.2d/%.2d %.2d:%.2d:%.2d\n" -msgstr "" -"Giá trị không đúng trong đồng hồ phần cứng: %4d/%.2d/%.2d %.2d:%.2d:%.2d\n" +msgstr "Giá trị không đúng trong đồng hồ phần cứng: %4d/%.2d/%.2d %.2d:%.2d:%.2d\n" #: hwclock/hwclock.c:421 #, c-format msgid "Hw clock time : %4d/%.2d/%.2d %.2d:%.2d:%.2d = %ld seconds since 1969\n" -msgstr "" -"Thời gian đồng hồ phần cứng : %4d/%.2d/%.2d %.2d:%.2d:%.2d = %ld giây kể từ " -"năm 1969\n" +msgstr "Thời gian đồng hồ phần cứng : %4d/%.2d/%.2d %.2d:%.2d:%.2d = %ld giây kể từ năm 1969\n" #: hwclock/hwclock.c:451 #, c-format @@ -6096,22 +5991,18 @@ msgid "Clock not changed - testing only.\n" msgstr "Đồng hồ không thay đổi - chỉ thử nghiệm mà thôi.\n" #: hwclock/hwclock.c:536 -#, fuzzy, c-format +#, c-format msgid "" "Time elapsed since reference time has been %.6f seconds.\n" "Delaying further to reach the new time.\n" msgstr "" -"Thời gian trôi qua kể từ khi chỉnh thời gian là %.6f giây.\n" -"Trì hoãn thêm để đi tới giây đầy đủ tiếp theo.\n" +"Thời gian trôi qua kể từ thời gian tham chiếu là %.6f giây.\n" +"Trì hoãn thêm để đi tới thời gian mới.\n" #: hwclock/hwclock.c:572 #, c-format -msgid "" -"The Hardware Clock registers contain values that are either invalid (e.g. " -"50th day of month) or beyond the range we can handle (e.g. Year 2095).\n" -msgstr "" -"Đồng hồ Phần cứng chứa các giá trị hoặc không đúng (v.d. ngày thứ 50 của " -"tháng) hoặc vượt quá phạm vi chúng ta có thể điều khiển (v.d. Năm 2095).\n" +msgid "The Hardware Clock registers contain values that are either invalid (e.g. 50th day of month) or beyond the range we can handle (e.g. Year 2095).\n" +msgstr "Đồng hồ Phần cứng chứa các giá trị hoặc không đúng (v.d. ngày thứ 50 của tháng) hoặc vượt quá phạm vi chúng ta có thể điều khiển (v.d. Năm 2095).\n" #: hwclock/hwclock.c:582 #, c-format @@ -6169,15 +6060,13 @@ msgstr "" #: hwclock/hwclock.c:663 #, c-format msgid "" -"The date command issued by %s returned something other than an integer where " -"the converted time value was expected.\n" +"The date command issued by %s returned something other than an integer where the converted time value was expected.\n" "The command was:\n" " %s\n" "The response was:\n" " %s\n" msgstr "" -"Câu lệnh date (ngày tháng) đưa ra bởi %s trả lại kết quả không phải là một " -"số nguyên, trong khi mong đợi giá trị thời gian đã chuyển đổi.\n" +"Câu lệnh date (ngày tháng) đưa ra bởi %s trả lại kết quả không phải là một số nguyên, trong khi mong đợi giá trị thời gian đã chuyển đổi.\n" "Câu lệnh là:\n" " %s\n" "Kết quả là:\n" @@ -6190,12 +6079,8 @@ msgstr "chuỗi ngày tháng %s bằng %ld giây kể từ năm 1969.\n" #: hwclock/hwclock.c:706 #, c-format -msgid "" -"The Hardware Clock does not contain a valid time, so we cannot set the " -"System Time from it.\n" -msgstr "" -"Đồng hồ Phần cứng không chứa thời gian thích hợp, vì thế chúng ta không thể " -"đặt Thời gian của Hệ thống từ đó.\n" +msgid "The Hardware Clock does not contain a valid time, so we cannot set the System Time from it.\n" +msgstr "Đồng hồ Phần cứng không chứa thời gian thích hợp, vì thế chúng ta không thể đặt Thời gian của Hệ thống từ đó.\n" #: hwclock/hwclock.c:728 hwclock/hwclock.c:804 #, c-format @@ -6215,8 +6100,7 @@ msgstr "\ttz.tz_minuteswest = %d\n" #: hwclock/hwclock.c:734 hwclock/hwclock.c:811 #, c-format msgid "Not setting system clock because running in test mode.\n" -msgstr "" -"Không thiết lập đồng hồ hệ thống bở vì đang chạy trong chế độ thử nghiệm.\n" +msgstr "Không thiết lập đồng hồ hệ thống bở vì đang chạy trong chế độ thử nghiệm.\n" #: hwclock/hwclock.c:743 hwclock/hwclock.c:820 #, c-format @@ -6228,20 +6112,18 @@ msgid "settimeofday() failed" msgstr "settimeofday() không thành công" #: hwclock/hwclock.c:782 -#, fuzzy, c-format +#, c-format msgid "Current system time: %ld = %s\n" -msgstr "đọc thời gian hệ thống" +msgstr "Thời gian hệ thống hiện thời: %ld = %s\n" #: hwclock/hwclock.c:805 #, c-format msgid "\tUTC: %s\n" -msgstr "" +msgstr "\tUTC: %s\n" #: hwclock/hwclock.c:852 #, c-format -msgid "" -"Not adjusting drift factor because the Hardware Clock previously contained " -"garbage.\n" +msgid "Not adjusting drift factor because the Hardware Clock previously contained garbage.\n" msgstr "Không chỉnh độ lệnh thời gian vì Đồng hồ phần cứng chứa rác.\n" #: hwclock/hwclock.c:857 @@ -6255,22 +6137,16 @@ msgstr "" #: hwclock/hwclock.c:863 #, c-format -msgid "" -"Not adjusting drift factor because it has been less than a day since the " -"last calibration.\n" -msgstr "" -"Không chỉnh độ lệnh thời gian vì nó nhỏ hơn một ngày kể từ lần định thời " -"gian cuối cùng.\n" +msgid "Not adjusting drift factor because it has been less than a day since the last calibration.\n" +msgstr "Không chỉnh độ lệnh thời gian vì nó nhỏ hơn một ngày kể từ lần định thời gian cuối cùng.\n" #: hwclock/hwclock.c:911 #, c-format msgid "" -"Clock drifted %.1f seconds in the past %d seconds in spite of a drift factor " -"of %f seconds/day.\n" +"Clock drifted %.1f seconds in the past %d seconds in spite of a drift factor of %f seconds/day.\n" "Adjusting drift factor by %f seconds/day\n" msgstr "" -"Đồng hồ chạy sai lệch %.1f giây trong số %d giây đã qua, và đi ngược lạiđộ " -"sai lệch %f giây/ngày.\n" +"Đồng hồ chạy sai lệch %.1f giây trong số %d giây đã qua, và đi ngược lạiđộ sai lệch %f giây/ngày.\n" "Chỉnh lại độ sai lệch %f giây/ngày\n" #: hwclock/hwclock.c:961 @@ -6299,15 +6175,13 @@ msgstr "" #: hwclock/hwclock.c:1001 #, c-format -msgid "" -"Could not open file with the clock adjustment parameters in it (%s) for " -"writing" -msgstr "" +msgid "Could not open file with the clock adjustment parameters in it (%s) for writing" +msgstr "Không thể mở tập tin chứa các tham số điều chỉnh đồng hồ (%s) để ghi" #: hwclock/hwclock.c:1006 hwclock/hwclock.c:1011 #, c-format msgid "Could not update file with the clock adjustment parameters (%s) in it" -msgstr "" +msgstr "Không thể cập nhật tập tin chứa các tham số điều chỉnh đồng hồ (%s)" #: hwclock/hwclock.c:1017 #, c-format @@ -6316,19 +6190,13 @@ msgstr "Không cập nhật các tham số chỉnh sai lệch.\n" #: hwclock/hwclock.c:1058 #, c-format -msgid "" -"The Hardware Clock does not contain a valid time, so we cannot adjust it.\n" -msgstr "" -"Đồng hồ Phần cứng không có thời gian thích hợp, vì thế chúng ta không thể " -"chỉnh.\n" +msgid "The Hardware Clock does not contain a valid time, so we cannot adjust it.\n" +msgstr "Đồng hồ Phần cứng không có thời gian thích hợp, vì thế chúng ta không thể chỉnh.\n" #: hwclock/hwclock.c:1066 -#, fuzzy, c-format -msgid "" -"Not setting clock because last adjustment time is zero, so history is bad." -msgstr "" -"Không chỉnh độ lệnh thời gian vì lần định thời gian cuối cùng bằng 0,\n" -"vì thế lịch sử xấu, và cần khởi động lại việc định thời gian.\n" +#, c-format +msgid "Not setting clock because last adjustment time is zero, so history is bad." +msgstr "Sẽ không đặt đồng hồ vì thời gian điều chỉnh cuối cùng là số không thì lịch sử sai." #: hwclock/hwclock.c:1089 #, c-format @@ -6351,15 +6219,14 @@ msgid "Unable to set system clock.\n" msgstr "Không đặt được đồng hồ hệ thống.\n" #: hwclock/hwclock.c:1230 -#, fuzzy, c-format +#, c-format msgid "Clock in UTC, not changed.\n" -msgstr "Trình bao chưa thay đổi.\n" +msgstr "Đồng hồ theo UTC nên không thay đổi gì.\n" #: hwclock/hwclock.c:1259 #, c-format msgid "" -"The kernel keeps an epoch value for the Hardware Clock only on an Alpha " -"machine.\n" +"The kernel keeps an epoch value for the Hardware Clock only on an Alpha machine.\n" "This copy of hwclock was built for a machine other than Alpha\n" "(and thus is presumably not running on an Alpha now). No action taken.\n" msgstr "" @@ -6379,12 +6246,8 @@ msgstr "Nhân đang giữ giá trị khởi đầu là %lu\n" #: hwclock/hwclock.c:1273 #, c-format -msgid "" -"To set the epoch value, you must use the 'epoch' option to tell to what " -"value to set it.\n" -msgstr "" -"Để đặt giá trị khởi đầu, bạn cần sử dụng tùy chọn 'epoch' để thông báo giá " -"trị muốn đặt.\n" +msgid "To set the epoch value, you must use the 'epoch' option to tell to what value to set it.\n" +msgstr "Để đặt giá trị khởi đầu, bạn cần sử dụng tùy chọn 'epoch' để thông báo giá trị muốn đặt.\n" #: hwclock/hwclock.c:1276 #, c-format @@ -6402,7 +6265,7 @@ msgid "%s from %s\n" msgstr "%s từ %s\n" #: hwclock/hwclock.c:1313 -#, fuzzy, c-format +#, c-format msgid "" "hwclock - query and set the hardware clock (RTC)\n" "\n" @@ -6440,47 +6303,51 @@ msgid "" " -D | --debug debug mode\n" "\n" msgstr "" -"hwclock - hỏi giờ và đặt đồng hồ phần cứng (theo RTC)\n" +"hwclock — hỏi giờ và đặt đồng hồ phần cứng (RTC)\n" "\n" "Sử dụng: hwclock [hàm] [các tùy chọn...]\n" "\n" "Hàm:\n" -" --help hiển thị trợ giúp này\n" -" --show đọc thời gian đồng hồ phần cứng rồi in ra kết quả\n" -" --set đặt rtc thành thời gian đưa ra với « --date »\n" -" --hctosys đặt thời gian hệ thống bằng đồng hồ phần cứng\n" -" --systohc đặt đồng hồ phần cứng dùng thời gian hệ thống hiện thời\n" -" --adjust chỉnh rtc để tính độ sai lệch có hệ thống kể từ\n" -" lần đặt hay chỉnh đồng hồ cuối cùng\n" -" --getepoch in ra giá trị khởi đầu (trong nhân) của đồng hồ phần cứng\n" -" --setepoch đặt giá trị khởi đầu (trong nhân) của đồng hồ phần cứng\n" -" thành giá trị đưa bằng « --epoch »\n" -" --version in ra phiên bản của hwclock tới đầu ra tiêu chuẩn\n" -"\n" -"Tùy chọn: \n" -" --utc đồng hồ phần cứng chỉ thời gian UTC (đối với kinh tuyến 0)\n" -" --localtime đồng hồ phần cứng chỉ thời gian địa phương\n" -" --rtc=đường_dẫn tập tin đặc biệt « /dev/... » cần dùng thay cho tập tin " -"mặc định\n" -" --directisa truy cập trực tiếp mạch nối ISA thay vì %s\n" -" --badyear lờ đi năm RTC bởi vì BIOS bị hỏng\n" -" --date chỉ ra thời gian để đặt cho đồng hồ phần cứng\n" -" --epoch=năm\tchỉ ra năm đầu tiên của giá trị thời gian khởi đầu\n" -" đồng hồ phần cứng\n" -" --noadjfile không truy cập « /etc/adjtime ». Cũng cần sử dụng\n" -" hoặc « --utc » hoặc « --localtime »\n" -"--adjfile=đường_dẫn\tghi rõ đường dẫn đến tập tin điều chỉnh\n" -"\t\t\t\t\t(mặc định là « /etc/adjtime »)\n" +" -h | --help hiển thị trợ giúp này\n" +" -r | --show đọc đồng hồ phần cứng và in ra kết quả\n" +" --set đặt rtc thành thời gian đưa ra, dùng « --date »\n" +" -s | --hctosys đặt thời gian hệ thống từ đồng hồ phần cứng\n" +" -w | --systohc đặt đồng hồ phần cứng thành thời gian hệ thống hiện thời\n" +" --systz đặt thời gian hệ thống dựa vào múi giờ hiện thời\n" +" --adjust điều chỉnh rtc để tính đến độ lệch có hệ thống\n" +"\t\t\t\tkế từ lần cuối cùng đặt hay chỉnh đồng hồ\n" +" --getepoch in ra giá trị thời điểm đồng hồ phần cứng của hạt nhân\n" +" --setepoch đặt giá trị thời điểm đồng hồ phần cứng của hạt nhân\n" +"\t\t\t\tthành giá trị đưa ra dùng « --epoch »\n" +" -v | --version in ra đầu ra tiêu chuẩn phiên bản của hwclock\n" +"\n" +"Tuỳ chọn: \n" +" -u | --utc đồng hồ phần cứng tính theo UTC\n" +" --localtime đồng hồ phần cứng tính theo thời gian cục bộ\n" +" -f | --rtc=đường_dẫn tập tin « /dev/... » đặc biệt cần dùng thay cho mặc định\n" +" --directisa truy cập trực tiếp mạch nối ISA thay cho %s\n" +" --badyear lờ đi năm của rtc vì BIOS bị hỏng\n" +" --date ghi rõ thời gian cần đặt trong đồng hồ phần cứng\n" +" --epoch=năm ghi rõ năm là đầu của giá trị thời điểm đồng hồ phần cứng\n" +" --noadjfile đừng truy cập đến « /etc/adjtime ».\n" +"\t\t\t\tCần dùng hoặc « --utc » hoặc « --localtime »\n" +" --adjfile=đường_dẫn\tghi rõ đường dẫn đến tập tin điều chỉnh\n" +"\t\t\t\t(mặc định là « /etc/adjtime »)\n" +" --test làm tất cả trừ thực sự cập nhật đồng hồ phần cứng\n" +"\t\t\t\thoặc cái gì khác\n" +" -D | --debug chế độ gỡ lỗi\n" +"\n" #: hwclock/hwclock.c:1348 -#, fuzzy, c-format +#, c-format msgid "" " -J|--jensen, -A|--arc, -S|--srm, -F|--funky-toy\n" " tell hwclock the type of alpha you have (see hwclock(8))\n" "\n" msgstr "" -" --jensen, --arc, --srm, --funky-toy\n" -" thông báo cho hwclock loại alpha bạn có (xem hwclock(8))\n" +" -J|--jensen, -A|--arc, -S|--srm, -F|--funky-toy\n" +" báo hwclock biết kiểu alpha bạn có (xem hwclock(8))\n" +"\n" #: hwclock/hwclock.c:1435 #, c-format @@ -6503,30 +6370,18 @@ msgstr "" #: hwclock/hwclock.c:1567 #, c-format -msgid "" -"%s: The --utc and --localtime options are mutually exclusive. You specified " -"both.\n" -msgstr "" -"%s: Các tùy chọn « --utc » và « --localtime » loại trừ lẫn nhau. Bạn lại đưa " -"ra cả hai.\n" +msgid "%s: The --utc and --localtime options are mutually exclusive. You specified both.\n" +msgstr "%s: Các tùy chọn « --utc » và « --localtime » loại trừ lẫn nhau. Bạn lại đưa ra cả hai.\n" #: hwclock/hwclock.c:1574 #, c-format -msgid "" -"%s: The --adjust and --noadjfile options are mutually exclusive. You " -"specified both.\n" -msgstr "" -"%s: Các tùy chọn « --adjust » và « --noadjust » loại trừ lẫn nhau. Bạn lại " -"đưa ra cả hai.\n" +msgid "%s: The --adjust and --noadjfile options are mutually exclusive. You specified both.\n" +msgstr "%s: Các tùy chọn « --adjust » và « --noadjust » loại trừ lẫn nhau. Bạn lại đưa ra cả hai.\n" #: hwclock/hwclock.c:1581 #, c-format -msgid "" -"%s: The --adjfile and --noadjfile options are mutually exclusive. You " -"specified both.\n" -msgstr "" -"%s: Các tùy chọn « --adjfile » và « --noadjfile » loại trừ lẫn nhau. Bạn lại " -"đưa ra cả hai.\n" +msgid "%s: The --adjfile and --noadjfile options are mutually exclusive. You specified both.\n" +msgstr "%s: Các tùy chọn « --adjfile » và « --noadjfile » loại trừ lẫn nhau. Bạn lại đưa ra cả hai.\n" #: hwclock/hwclock.c:1590 #, c-format @@ -6541,38 +6396,27 @@ msgstr "Không có thời gian set-to nào có thể sử dụng. Không thể #: hwclock/hwclock.c:1621 #, c-format msgid "Sorry, only the superuser can change the Hardware Clock.\n" -msgstr "" -"Rất tiếc, nhưng chỉ người dùng root mới có thể thay đổi Đồng hồ Phần cứng.\n" +msgstr "Rất tiếc, nhưng chỉ người dùng root mới có thể thay đổi Đồng hồ Phần cứng.\n" #: hwclock/hwclock.c:1626 #, c-format msgid "Sorry, only the superuser can change the System Clock.\n" -msgstr "" -"Rất tiếc, nhưng chỉ người dùng root mới có thể thay đổi Đồng hồ Hệ thống.\n" +msgstr "Rất tiếc, nhưng chỉ người dùng root mới có thể thay đổi Đồng hồ Hệ thống.\n" #: hwclock/hwclock.c:1631 #, c-format -msgid "" -"Sorry, only the superuser can change the Hardware Clock epoch in the " -"kernel.\n" -msgstr "" -"Rất tiếc, nhưng chỉ người dùng root mới có thể thay đổi khởi đầu củaĐồng hồ " -"Phần cứng trong nhân.\n" +msgid "Sorry, only the superuser can change the Hardware Clock epoch in the kernel.\n" +msgstr "Rất tiếc, nhưng chỉ người dùng root mới có thể thay đổi khởi đầu củaĐồng hồ Phần cứng trong nhân.\n" #: hwclock/hwclock.c:1651 #, c-format msgid "Cannot access the Hardware Clock via any known method.\n" -msgstr "" -"Không thể truy cập tới Đồng hồ Phần cứng qua một phương pháp không rõ.\n" +msgstr "Không thể truy cập tới Đồng hồ Phần cứng qua một phương pháp không rõ.\n" #: hwclock/hwclock.c:1655 #, c-format -msgid "" -"Use the --debug option to see the details of our search for an access " -"method.\n" -msgstr "" -"Sử dụng tùy chọn --debug để xem chi tiết về quá trình tìm kiếm phương pháp " -"truy cập của chúng ta.\n" +msgid "Use the --debug option to see the details of our search for an access method.\n" +msgstr "Sử dụng tùy chọn --debug để xem chi tiết về quá trình tìm kiếm phương pháp truy cập của chúng ta.\n" #: hwclock/kd.c:53 #, c-format @@ -6652,9 +6496,7 @@ msgstr "ioctl() tới %s để tắt việc gián đoạn cập nhật không th #: hwclock/rtc.c:303 #, c-format msgid "ioctl() to %s to turn on update interrupts failed unexpectedly" -msgstr "" -"ioctl() tới %s để bật việc gián đoạn cập nhật không thành công một cách bất " -"thường" +msgstr "ioctl() tới %s để bật việc gián đoạn cập nhật không thành công một cách bất thường" #: hwclock/rtc.c:360 #, c-format @@ -6673,14 +6515,8 @@ msgstr "Mở %s không thành công" #: hwclock/rtc.c:410 hwclock/rtc.c:454 #, c-format -msgid "" -"To manipulate the epoch value in the kernel, we must access the Linux 'rtc' " -"device driver via the device special file %s. This file does not exist on " -"this system.\n" -msgstr "" -"Để điều khiển giá trị khởi đầu (epoch) trong nhân, chúng ta cần truy cập tới " -"driver thiết bị 'rtc' qua tập tin thiết bị đặc biệt %s. Tập tin này không " -"tồn tại trên hệ thống.\n" +msgid "To manipulate the epoch value in the kernel, we must access the Linux 'rtc' device driver via the device special file %s. This file does not exist on this system.\n" +msgstr "Để điều khiển giá trị khởi đầu (epoch) trong nhân, chúng ta cần truy cập tới driver thiết bị 'rtc' qua tập tin thiết bị đặc biệt %s. Tập tin này không tồn tại trên hệ thống.\n" #: hwclock/rtc.c:415 hwclock/rtc.c:459 #, c-format @@ -6700,21 +6536,17 @@ msgstr "chúng ta đọc khởi đầu (epoch) %ld từ %s bằng RTC_EPOCH_READ #: hwclock/rtc.c:446 #, c-format msgid "The epoch value may not be less than 1900. You requested %ld\n" -msgstr "" -"Giá trị khởi đầu (epoch) không được nhỏ hơn 1900. Bạn đã yêu cầu %ld\n" +msgstr "Giá trị khởi đầu (epoch) không được nhỏ hơn 1900. Bạn đã yêu cầu %ld\n" #: hwclock/rtc.c:464 #, c-format msgid "setting epoch to %ld with RTC_EPOCH_SET ioctl to %s.\n" -msgstr "" -"thiết lập khởi đầu (epoch) thành %ld bằng RTC_EPOCH_SET ioctl tới %s.\n" +msgstr "thiết lập khởi đầu (epoch) thành %ld bằng RTC_EPOCH_SET ioctl tới %s.\n" #: hwclock/rtc.c:469 #, c-format -msgid "" -"The kernel device driver for %s does not have the RTC_EPOCH_SET ioctl.\n" -msgstr "" -"Trình điều khiển thiết bị của nhân cho %s không có RTC_EPOCH_SET ioctl.\n" +msgid "The kernel device driver for %s does not have the RTC_EPOCH_SET ioctl.\n" +msgstr "Trình điều khiển thiết bị của nhân cho %s không có RTC_EPOCH_SET ioctl.\n" #: hwclock/rtc.c:472 #, c-format @@ -6724,12 +6556,12 @@ msgstr "ioctl(RTC_EPOCH_SET) tới %s không thành công" #: libs/blkid/bin/findfs.c:24 #, c-format msgid "Usage: %s LABEL=