diff options
1289 files changed, 1684 insertions, 4120 deletions
@@ -17,14 +17,17 @@ AUTHORS (merged projects & commands): flock: H. Peter Anvin <hpa@zytor.com> getopt: Frodo Looijaard <frodol@dds.nl> - schedutils: Robert Love <rlove@rlove.org> - simpleinit: Richard Gooch <rgooch@atnf.csiro.au> hwclock: Bryan Henderson <bryanh@giraffe-data.com> - setarch: Elliot Lee <sopwith@redhat.com> - Jindrich Novy <jnovy@redhat.com> + ipcmk: Hayden James <hayden.james@gmail.com> + ldattach: Tilman Schmidt <tilman@imap.cc> + libblkid: Theodore Ts'o <tytso@mit.edu> + lscpu: Cai Qian <qcai@redhat.com> rtcwake: David Brownell <david-b@pacbell.net> Bernhard Walle <bwalle@suse.de> - ldattach: Tilman Schmidt <tilman@imap.cc> + schedutils: Robert Love <rlove@rlove.org> + setarch: Elliot Lee <sopwith@redhat.com> + Jindrich Novy <jnovy@redhat.com> + simpleinit: Richard Gooch <rgooch@atnf.csiro.au> CONTRIBUTORS: @@ -49,6 +52,7 @@ CONTRIBUTORS: Bernhard Walle <bwalle@suse.de> Cai Qian <qcai@redhat.com> Christophe Blaess <Christophe@Blaess.fr> + Chris Webb <chris@arachsys.com> Claus Hindsgaul <claus_h@image.dk> Cliff Wickman <cpw@sgi.com> Clytie Siddall <clytie@riverland.net.au> @@ -143,6 +147,7 @@ CONTRIBUTORS: Sven Jost <sven.jost@googlemail.com> Theodore Ts'o <tytso@mit.edu> Tilman Schmidt <tilman@imap.cc> + Tom Prince <tom.prince@ualberta.net> Valerie Henson <val_henson@linux.intel.com> Vincent Deffontaines <vincent@gryzor.com> Volker Schatz <oss@volkerschatz.com> @@ -1,3 +1,7 @@ +util-linux-ng 2.15.1-rc1: May 27 2009 +* see docs/v2.15.1-ReleaseNotes or complete changelog at + ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/v2.15/v2.15.1-rc1-ChangeLog + util-linux-ng 2.15: May 5 2009 * see docs/v2.15-ReleaseNotes or complete changelog at ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/v2.15/v2.15-ChangeLog 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): diff --git a/configure.ac b/configure.ac index 46dc3235..97cda57b 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -AC_INIT(util-linux-ng, 2.15, kzak@redhat.com) +AC_INIT(util-linux-ng, 2.15.1-rc1, kzak@redhat.com) AC_PREREQ(2.60) @@ -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 <langinfo.h>]]) + AC_CHECK_FUNCS( [inet_aton \ fsync \ @@ -159,6 +161,46 @@ 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" +]) + +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 AC_MSG_WARN([uuid library is not found; mkswap(8) will not generate UUIDs]) @@ -174,28 +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], []) - AC_CHECK_LIB(blkid, blkid_evaluate_tag, [have_blkid_evaluate=yes], []) -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 <blkid.h> 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 @@ -204,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], [ @@ -642,6 +672,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/docs/v2.15.1-ReleaseNotes b/docs/v2.15.1-ReleaseNotes new file mode 100644 index 00000000..b879d302 --- /dev/null +++ b/docs/v2.15.1-ReleaseNotes @@ -0,0 +1,47 @@ +Util-linux-ng 2.15.1 Release Notes +================================== + +Changes since v2.15 +------------------- + + For more details see ChangeLog files at: + ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/v2.15/ + +build-sys: + - add UTIL_{SET,RESTORE}_FLAGS [Karel Zak] + - fix "make -C" bug [Karel Zak] + - fix blkid detection in configure.ac [Karel Zak] + - fix blkid.h include for old e2fsprogs [Karel Zak] +cal: + - Highlight today even when month or year specified [Rajeev V. Pillai] + - uClibc has langinfo.h but not _NL_TIME_WEEK_1STDAY. [Tom Prince] +chrt: + - don't assume SCHED_BATCH and SCHED_IDLE exist [Aurelien Jarno] +docs: + - update AUTHORS file [Karel Zak] +fdisk: + - (and cfdisk) fix to be consistent about maximum heads [Chris Webb] +libblkid: + - fix reiserfs name [Karel Zak] + - update man page [Karel Zak] + - blkid_do_safeprobe() has to be tolerant to RAIDs [Karel Zak] + - cleanup debug messages and return codes in blkid_do_probe() [Karel Zak] + - fix "hangs forever with partition type mdraid" [Karel Zak] + - make libuuid optional [Karel Zak] +losetup: + - handle symlinks in /dev/loop/ [Mike Frysinger] +lscpu: + - fix cpuid code on x86/PIC [Mike Frysinger] +mount: + - fix undefined reference to `security_get_initial_context' [Karel Zak] +po: + - merge changes [Karel Zak] + - update vi.po (from translationproject.org) [Clytie Siddall] +tests: + - add mdraid libblkid test [Karel Zak] + - don't run some mount tests for non-root users [Karel Zak] + - fix reiserfs test [Karel Zak] + - fix script that creates lscpu dumps [Karel Zak] + - move lscpu /proc and /sys dumps to tarballs [Karel Zak] + - remove broken Xen dumps for lscpu [Karel Zak] + 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': 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 <sys/types.h> #include <stdlib.h> +#ifdef HAVE_BLKID_BLKID_H +#include <blkid/blkid.h> +#else #include <blkid.h> +#endif #include "blkdev.h" #include "canonicalize.h" 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=<yes|not> +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=<path> +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=<methods> +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 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 <errno.h> #endif #include <stdint.h> -#ifdef HAVE_LIBUUID -#include <uuid/uuid.h> -#endif #include <stdarg.h> #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 <errno.h> #endif #include <stdint.h> -#ifdef HAVE_LIBUUID -#include <uuid/uuid.h> -#endif #include <stdarg.h> #include "pathnames.h" diff --git a/libs/blkid/src/probe.c b/libs/blkid/src/probe.c index 0e4745ac..38d42762 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; } @@ -450,18 +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); - if (pr->idx) - 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; @@ -516,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; } @@ -527,6 +531,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) { @@ -542,9 +550,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 */ 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 = 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 */ 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 diff --git a/mount/lomount.c b/mount/lomount.c index dbce96be..2768ea37 100644 --- a/mount/lomount.c +++ b/mount/lomount.c @@ -261,7 +261,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) diff --git a/mount/mount.c b/mount/mount.c index 545663a0..a43fad56 100644 --- a/mount/mount.c +++ b/mount/mount.c @@ -1576,7 +1576,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; diff --git a/po/POTFILES.in b/po/POTFILES.in index 30172621..2fdad95e 100644 --- a/po/POTFILES.in +++ b/po/POTFILES.in @@ -86,6 +86,7 @@ libs/blkid/src/probers/vfat.c libs/blkid/src/probers/via_raid.c libs/blkid/src/probers/vxfs.c libs/blkid/src/probers/xfs.c +libs/blkid/src/probers/zfs.c libs/blkid/src/read.c libs/blkid/src/resolve.c libs/blkid/src/save.c @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: util-linux 2.13-pre3\n" "Report-Msgid-Bugs-To: Karel Zak <kzak@redhat.com>\n" -"POT-Creation-Date: 2009-04-29 15:34+0200\n" +"POT-Creation-Date: 2009-05-27 21:39+0200\n" "PO-Revision-Date: 2005-09-17 13:40+0200\n" "Last-Translator: Josep Puigdemont <josep.puigdemont@gmail.com>\n" "Language-Team: Catalan <ca@dodds.net>\n" @@ -7879,25 +7879,25 @@ msgstr "%s: no s'ha pogut executar stat al fitxer temporal.\n" msgid "%s: can't read temporary file.\n" msgstr "%s: no s'hapogut llegir el fitxer temporal.\n" -#: misc-utils/cal.c:355 misc-utils/cal.c:367 +#: misc-utils/cal.c:358 misc-utils/cal.c:370 #, fuzzy, c-format msgid "illegal day value: use 1-%d" msgstr "el valor de l'any no és legal: utilitzeu 1-9999" -#: misc-utils/cal.c:359 +#: misc-utils/cal.c:362 msgid "illegal month value: use 1-12" msgstr "el valor del mes és il·legal: utilitzeu 1-12" -#: misc-utils/cal.c:363 +#: misc-utils/cal.c:366 msgid "illegal year value: use 1-9999" msgstr "el valor de l'any no és legal: utilitzeu 1-9999" -#: misc-utils/cal.c:457 +#: misc-utils/cal.c:460 #, c-format msgid "%s %d" msgstr "%2$d de %1$s" -#: misc-utils/cal.c:848 +#: misc-utils/cal.c:851 #, fuzzy, c-format msgid "usage: cal [-13smjyV] [[[day] month] year]\n" msgstr "forma d'ús: cal [-13smjyV] [[mes] any]\n" @@ -9576,52 +9576,52 @@ msgstr "No s'ha pogut escriure la partició a %s\n" msgid "pid %d's %s scheduling policy: " msgstr "" -#: schedutils/chrt.c:108 +#: schedutils/chrt.c:112 #, fuzzy, c-format msgid "unknown\n" msgstr "desconegut" -#: schedutils/chrt.c:112 +#: schedutils/chrt.c:116 #, c-format msgid "failed to get pid %d's attributes" msgstr "" -#: schedutils/chrt.c:114 +#: schedutils/chrt.c:118 #, c-format msgid "pid %d's %s scheduling priority: %d\n" msgstr "" -#: schedutils/chrt.c:130 +#: schedutils/chrt.c:147 #, c-format msgid "SCHED_%s min/max priority\t: %d/%d\n" msgstr "" -#: schedutils/chrt.c:133 +#: schedutils/chrt.c:150 #, fuzzy, c-format msgid "SCHED_%s not supported?\n" msgstr "NFS sobre TCP no està implementat.\n" -#: schedutils/chrt.c:185 +#: schedutils/chrt.c:206 #, fuzzy msgid "failed to parse pid" msgstr "%s: s'ha produït un error en obrir: %s\n" -#: schedutils/chrt.c:207 +#: schedutils/chrt.c:228 #, fuzzy msgid "current" msgstr "ncount" -#: schedutils/chrt.c:215 +#: schedutils/chrt.c:236 #, fuzzy msgid "failed to parse priority" msgstr "No s'ha pogut escriure la partició a %s\n" -#: schedutils/chrt.c:221 +#: schedutils/chrt.c:242 #, fuzzy, c-format msgid "failed to set pid %d's policy" msgstr "No s'ha pogut escriure la partició a %s\n" -#: schedutils/chrt.c:230 +#: schedutils/chrt.c:251 #, fuzzy, c-format msgid "failed to execute %s" msgstr "no ha estat possible executar ioctl() per llegir l'hora de %s" @@ -10638,7 +10638,7 @@ msgstr "" msgid "full" msgstr "" -#: sys-utils/lscpu.c:129 sys-utils/lscpu.c:152 sys-utils/lscpu.c:431 +#: sys-utils/lscpu.c:129 sys-utils/lscpu.c:152 sys-utils/lscpu.c:441 #, fuzzy, c-format msgid "error: %s" msgstr "Error RE:" @@ -10660,16 +10660,16 @@ msgstr "" "\n" "S'ha produït un error en tancar el fitxer\n" -#: sys-utils/lscpu.c:481 +#: sys-utils/lscpu.c:491 #, fuzzy msgid "error: malloc failed" msgstr "l'assignació de memòria (malloc) ha fallat" -#: sys-utils/lscpu.c:496 +#: sys-utils/lscpu.c:506 msgid "error: /sys filesystem is not accessable." msgstr "" -#: sys-utils/lscpu.c:514 +#: sys-utils/lscpu.c:524 #, c-format msgid "" "# The following is the parsable format, which can be fed to other\n" @@ -10678,66 +10678,66 @@ msgid "" "# CPU,Core,Socket,Node" msgstr "" -#: sys-utils/lscpu.c:580 +#: sys-utils/lscpu.c:590 msgid "Thread(s) per core:" msgstr "" -#: sys-utils/lscpu.c:581 +#: sys-utils/lscpu.c:591 msgid "Core(s) per socket:" msgstr "" -#: sys-utils/lscpu.c:582 +#: sys-utils/lscpu.c:592 msgid "CPU socket(s):" msgstr "" -#: sys-utils/lscpu.c:586 +#: sys-utils/lscpu.c:596 msgid "NUMA node(s):" msgstr "" -#: sys-utils/lscpu.c:588 +#: sys-utils/lscpu.c:598 msgid "Vendor ID:" msgstr "" -#: sys-utils/lscpu.c:590 +#: sys-utils/lscpu.c:600 msgid "CPU family:" msgstr "" -#: sys-utils/lscpu.c:592 +#: sys-utils/lscpu.c:602 msgid "Model:" msgstr "" -#: sys-utils/lscpu.c:594 +#: sys-utils/lscpu.c:604 msgid "Stepping:" msgstr "" -#: sys-utils/lscpu.c:596 +#: sys-utils/lscpu.c:606 msgid "CPU MHz:" msgstr "" -#: sys-utils/lscpu.c:599 sys-utils/lscpu.c:601 +#: sys-utils/lscpu.c:609 sys-utils/lscpu.c:611 #, fuzzy msgid "Virtualization:" msgstr "Antiga situació:\n" -#: sys-utils/lscpu.c:604 +#: sys-utils/lscpu.c:614 msgid "Hypervisor vendor:" msgstr "" -#: sys-utils/lscpu.c:605 +#: sys-utils/lscpu.c:615 msgid "Virtualization type:" msgstr "" -#: sys-utils/lscpu.c:613 +#: sys-utils/lscpu.c:623 #, c-format msgid "%s cache:" msgstr "" -#: sys-utils/lscpu.c:621 +#: sys-utils/lscpu.c:631 #, fuzzy, c-format msgid "Usage: %s [option]\n" msgstr "Forma d'ús: %s [opcions] dispositiu ...\n" -#: sys-utils/lscpu.c:624 +#: sys-utils/lscpu.c:634 msgid "" "CPU architecture information helper\n" "\n" @@ -10746,7 +10746,7 @@ msgid "" " -s, --sysroot use the directory as a new system root.\n" msgstr "" -#: sys-utils/lscpu.c:673 +#: sys-utils/lscpu.c:683 #, fuzzy, c-format msgid "error: change working directory to %s." msgstr "s'ha produït un error en canviar el mode de %s: %s\n" @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: util-linux-ng 2.15-rc2\n" "Report-Msgid-Bugs-To: Karel Zak <kzak@redhat.com>\n" -"POT-Creation-Date: 2009-04-29 15:34+0200\n" +"POT-Creation-Date: 2009-05-27 21:39+0200\n" "PO-Revision-Date: 2009-04-20 13:39+0200\n" "Last-Translator: Petr Pisar <petr.pisar@atlas.cz>\n" "Language-Team: Czech <translation-team-cs@lists.sourceforge.net>\n" @@ -7755,25 +7755,25 @@ msgstr "%s: volánà stat pro doÄasný soubor selhalo.\n" msgid "%s: can't read temporary file.\n" msgstr "%s: doÄasný soubor nelze ÄÃst.\n" -#: misc-utils/cal.c:355 misc-utils/cal.c:367 +#: misc-utils/cal.c:358 misc-utils/cal.c:370 #, c-format msgid "illegal day value: use 1-%d" msgstr "chybná hodnota pro den: použijte 1–%d" -#: misc-utils/cal.c:359 +#: misc-utils/cal.c:362 msgid "illegal month value: use 1-12" msgstr "chybná hodnota pro mÄ›sÃc: použijte 1–12" -#: misc-utils/cal.c:363 +#: misc-utils/cal.c:366 msgid "illegal year value: use 1-9999" msgstr "chybná hodnota pro rok: použijte 1–9999" -#: misc-utils/cal.c:457 +#: misc-utils/cal.c:460 #, c-format msgid "%s %d" msgstr "%s %d" -#: misc-utils/cal.c:848 +#: misc-utils/cal.c:851 #, c-format msgid "usage: cal [-13smjyV] [[[day] month] year]\n" msgstr "PoužitÃ: cal [-13smjyV] [[[DEN] MÄšSÃC] ROK]\n" @@ -9532,52 +9532,52 @@ msgid "pid %d's %s scheduling policy: " msgstr "%2$s plánovacà politika procesu %1$d: " # unknown policy -#: schedutils/chrt.c:108 +#: schedutils/chrt.c:112 #, c-format msgid "unknown\n" msgstr "neznámá\n" -#: schedutils/chrt.c:112 +#: schedutils/chrt.c:116 #, c-format msgid "failed to get pid %d's attributes" msgstr "nepodaÅ™ilo se zÃskat vlastnosti procesu %d" # XXX: Second argument is "new" or "current" -#: schedutils/chrt.c:114 +#: schedutils/chrt.c:118 #, c-format msgid "pid %d's %s scheduling priority: %d\n" msgstr "%2$s plánovacà priorita procesu %1$d: %3$d\n" # First argument just completes literal policy name -#: schedutils/chrt.c:130 +#: schedutils/chrt.c:147 #, c-format msgid "SCHED_%s min/max priority\t: %d/%d\n" msgstr "SCHED_%s min./max. priorita\t: %d/%d\n" -#: schedutils/chrt.c:133 +#: schedutils/chrt.c:150 #, c-format msgid "SCHED_%s not supported?\n" msgstr "SCHED_%s nenà podporována?\n" -#: schedutils/chrt.c:185 +#: schedutils/chrt.c:206 msgid "failed to parse pid" msgstr "PID se nezdaÅ™ilo rozebrat" # current policy/priority -#: schedutils/chrt.c:207 +#: schedutils/chrt.c:228 msgid "current" msgstr "souÄasná" -#: schedutils/chrt.c:215 +#: schedutils/chrt.c:236 msgid "failed to parse priority" msgstr "prioritu se nezdaÅ™ilo rozebrat" -#: schedutils/chrt.c:221 +#: schedutils/chrt.c:242 #, c-format msgid "failed to set pid %d's policy" msgstr "politiku procesu %d se nepodaÅ™ilo nastavit" -#: schedutils/chrt.c:230 +#: schedutils/chrt.c:251 #, c-format msgid "failed to execute %s" msgstr "spuÅ¡tÄ›nà %s selhalo" @@ -10611,7 +10611,7 @@ msgstr "paravirtualizace" msgid "full" msgstr "plná" -#: sys-utils/lscpu.c:129 sys-utils/lscpu.c:152 sys-utils/lscpu.c:431 +#: sys-utils/lscpu.c:129 sys-utils/lscpu.c:152 sys-utils/lscpu.c:441 #, c-format msgid "error: %s" msgstr "chyba: %s" @@ -10629,15 +10629,15 @@ msgstr "chyba: funkce strdup selhala" msgid "error: uname failed" msgstr "chyba: volánà uname selhalo" -#: sys-utils/lscpu.c:481 +#: sys-utils/lscpu.c:491 msgid "error: malloc failed" msgstr "chyba: funkce malloc selhala" -#: sys-utils/lscpu.c:496 +#: sys-utils/lscpu.c:506 msgid "error: /sys filesystem is not accessable." msgstr "chyba: souborový systém /sys nenà pÅ™Ãstupný." -#: sys-utils/lscpu.c:514 +#: sys-utils/lscpu.c:524 #, c-format msgid "" "# The following is the parsable format, which can be fed to other\n" @@ -10650,67 +10650,67 @@ msgstr "" "# které se poÄÃtá od nuly.\n" "# CPU,Jádro,Patice,Uzel" -#: sys-utils/lscpu.c:580 +#: sys-utils/lscpu.c:590 msgid "Thread(s) per core:" msgstr "Vláken na jádro:" -#: sys-utils/lscpu.c:581 +#: sys-utils/lscpu.c:591 msgid "Core(s) per socket:" msgstr "Jader na patici:" -#: sys-utils/lscpu.c:582 +#: sys-utils/lscpu.c:592 msgid "CPU socket(s):" msgstr "Patic CPU:" -#: sys-utils/lscpu.c:586 +#: sys-utils/lscpu.c:596 msgid "NUMA node(s):" msgstr "Uzly NUMA:" -#: sys-utils/lscpu.c:588 +#: sys-utils/lscpu.c:598 msgid "Vendor ID:" msgstr "ID výrobce:" -#: sys-utils/lscpu.c:590 +#: sys-utils/lscpu.c:600 msgid "CPU family:" msgstr "Rodina CPU:" -#: sys-utils/lscpu.c:592 +#: sys-utils/lscpu.c:602 msgid "Model:" msgstr "Model:" # ???: Existuje Äeský pÅ™eklad? -#: sys-utils/lscpu.c:594 +#: sys-utils/lscpu.c:604 msgid "Stepping:" msgstr "Stepping:" -#: sys-utils/lscpu.c:596 +#: sys-utils/lscpu.c:606 msgid "CPU MHz:" msgstr "CPU MHz:" -#: sys-utils/lscpu.c:599 sys-utils/lscpu.c:601 +#: sys-utils/lscpu.c:609 sys-utils/lscpu.c:611 msgid "Virtualization:" msgstr "Virtualizace:" -#: sys-utils/lscpu.c:604 +#: sys-utils/lscpu.c:614 msgid "Hypervisor vendor:" msgstr "Výrobce hypervizoru:" -#: sys-utils/lscpu.c:605 +#: sys-utils/lscpu.c:615 msgid "Virtualization type:" msgstr "Druh virtualizace:" # ???: keÅ¡ -#: sys-utils/lscpu.c:613 +#: sys-utils/lscpu.c:623 #, c-format msgid "%s cache:" msgstr "%s cache:" -#: sys-utils/lscpu.c:621 +#: sys-utils/lscpu.c:631 #, c-format msgid "Usage: %s [option]\n" msgstr "PoužitÃ: %s [PŘEPÃNAÄŒ]\n" -#: sys-utils/lscpu.c:624 +#: sys-utils/lscpu.c:634 msgid "" "CPU architecture information helper\n" "\n" @@ -10725,7 +10725,7 @@ msgstr "" "Äitelné\n" " -s, --sysroot použije adresář jako koÅ™en nového systému\n" -#: sys-utils/lscpu.c:673 +#: sys-utils/lscpu.c:683 #, c-format msgid "error: change working directory to %s." msgstr "chyba: zmÄ›na pracovnÃho adresáře do %s." @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: util-linux 2.11y\n" "Report-Msgid-Bugs-To: Karel Zak <kzak@redhat.com>\n" -"POT-Creation-Date: 2009-04-29 15:34+0200\n" +"POT-Creation-Date: 2009-05-27 21:39+0200\n" "PO-Revision-Date: 2005-08-15 21:00+0200\n" "Last-Translator: Claus Hindsgaul <claus_h@image.dk>\n" "Language-Team: Danish <dansk@klid.dk>\n" @@ -7715,25 +7715,25 @@ msgstr "%s: kunne ikke finde midlertidig fil.\n" msgid "%s: can't read temporary file.\n" msgstr "%s: kunne ikke læse midlertidig fil.\n" -#: misc-utils/cal.c:355 misc-utils/cal.c:367 +#: misc-utils/cal.c:358 misc-utils/cal.c:370 #, fuzzy, c-format msgid "illegal day value: use 1-%d" msgstr "ugyldig årsværdi: brug 1-9999" -#: misc-utils/cal.c:359 +#: misc-utils/cal.c:362 msgid "illegal month value: use 1-12" msgstr "ugyldig månedsværdi: brug 1-12" -#: misc-utils/cal.c:363 +#: misc-utils/cal.c:366 msgid "illegal year value: use 1-9999" msgstr "ugyldig årsværdi: brug 1-9999" -#: misc-utils/cal.c:457 +#: misc-utils/cal.c:460 #, c-format msgid "%s %d" msgstr "%s %d" -#: misc-utils/cal.c:848 +#: misc-utils/cal.c:851 #, fuzzy, c-format msgid "usage: cal [-13smjyV] [[[day] month] year]\n" msgstr "brug: cal [-13smjyV] [[måned] år]\n" @@ -9391,52 +9391,52 @@ msgstr "Mislykket skrivning af partition på %s\n" msgid "pid %d's %s scheduling policy: " msgstr "" -#: schedutils/chrt.c:108 +#: schedutils/chrt.c:112 #, fuzzy, c-format msgid "unknown\n" msgstr "ukendt" -#: schedutils/chrt.c:112 +#: schedutils/chrt.c:116 #, c-format msgid "failed to get pid %d's attributes" msgstr "" -#: schedutils/chrt.c:114 +#: schedutils/chrt.c:118 #, c-format msgid "pid %d's %s scheduling priority: %d\n" msgstr "" -#: schedutils/chrt.c:130 +#: schedutils/chrt.c:147 #, c-format msgid "SCHED_%s min/max priority\t: %d/%d\n" msgstr "" -#: schedutils/chrt.c:133 +#: schedutils/chrt.c:150 #, fuzzy, c-format msgid "SCHED_%s not supported?\n" msgstr "NFS via TCP understøttes ikke.\n" -#: schedutils/chrt.c:185 +#: schedutils/chrt.c:206 #, fuzzy msgid "failed to parse pid" msgstr "%s: Kunne ikke åbne: %s\n" -#: schedutils/chrt.c:207 +#: schedutils/chrt.c:228 #, fuzzy msgid "current" msgstr "nantal" -#: schedutils/chrt.c:215 +#: schedutils/chrt.c:236 #, fuzzy msgid "failed to parse priority" msgstr "Mislykket skrivning af partition på %s\n" -#: schedutils/chrt.c:221 +#: schedutils/chrt.c:242 #, fuzzy, c-format msgid "failed to set pid %d's policy" msgstr "Mislykket skrivning af partition på %s\n" -#: schedutils/chrt.c:230 +#: schedutils/chrt.c:251 #, fuzzy, c-format msgid "failed to execute %s" msgstr "ioctl() kunne ikke aflæse tiden fra %s" @@ -10442,7 +10442,7 @@ msgstr "" msgid "full" msgstr "" -#: sys-utils/lscpu.c:129 sys-utils/lscpu.c:152 sys-utils/lscpu.c:431 +#: sys-utils/lscpu.c:129 sys-utils/lscpu.c:152 sys-utils/lscpu.c:441 #, fuzzy, c-format msgid "error: %s" msgstr "RE fejl: " @@ -10464,16 +10464,16 @@ msgstr "" "\n" "Fejl ved lukning af fil\n" -#: sys-utils/lscpu.c:481 +#: sys-utils/lscpu.c:491 #, fuzzy msgid "error: malloc failed" msgstr "hukommelsesallokering mislykkedes (malloc)" -#: sys-utils/lscpu.c:496 +#: sys-utils/lscpu.c:506 msgid "error: /sys filesystem is not accessable." msgstr "" -#: sys-utils/lscpu.c:514 +#: sys-utils/lscpu.c:524 #, c-format msgid "" "# The following is the parsable format, which can be fed to other\n" @@ -10482,66 +10482,66 @@ msgid "" "# CPU,Core,Socket,Node" msgstr "" -#: sys-utils/lscpu.c:580 +#: sys-utils/lscpu.c:590 msgid "Thread(s) per core:" msgstr "" -#: sys-utils/lscpu.c:581 +#: sys-utils/lscpu.c:591 msgid "Core(s) per socket:" msgstr "" -#: sys-utils/lscpu.c:582 +#: sys-utils/lscpu.c:592 msgid "CPU socket(s):" msgstr "" -#: sys-utils/lscpu.c:586 +#: sys-utils/lscpu.c:596 msgid "NUMA node(s):" msgstr "" -#: sys-utils/lscpu.c:588 +#: sys-utils/lscpu.c:598 msgid "Vendor ID:" msgstr "" -#: sys-utils/lscpu.c:590 +#: sys-utils/lscpu.c:600 msgid "CPU family:" msgstr "" -#: sys-utils/lscpu.c:592 +#: sys-utils/lscpu.c:602 msgid "Model:" msgstr "" -#: sys-utils/lscpu.c:594 +#: sys-utils/lscpu.c:604 msgid "Stepping:" msgstr "" -#: sys-utils/lscpu.c:596 +#: sys-utils/lscpu.c:606 msgid "CPU MHz:" msgstr "" -#: sys-utils/lscpu.c:599 sys-utils/lscpu.c:601 +#: sys-utils/lscpu.c:609 sys-utils/lscpu.c:611 #, fuzzy msgid "Virtualization:" msgstr "Gammel situation:\n" -#: sys-utils/lscpu.c:604 +#: sys-utils/lscpu.c:614 msgid "Hypervisor vendor:" msgstr "" -#: sys-utils/lscpu.c:605 +#: sys-utils/lscpu.c:615 msgid "Virtualization type:" msgstr "" -#: sys-utils/lscpu.c:613 +#: sys-utils/lscpu.c:623 #, c-format msgid "%s cache:" msgstr "" -#: sys-utils/lscpu.c:621 +#: sys-utils/lscpu.c:631 #, fuzzy, c-format msgid "Usage: %s [option]\n" msgstr "Brug: %s [tilvalg] enhed ...\n" -#: sys-utils/lscpu.c:624 +#: sys-utils/lscpu.c:634 msgid "" "CPU architecture information helper\n" "\n" @@ -10550,7 +10550,7 @@ msgid "" " -s, --sysroot use the directory as a new system root.\n" msgstr "" -#: sys-utils/lscpu.c:673 +#: sys-utils/lscpu.c:683 #, fuzzy, c-format msgid "error: change working directory to %s." msgstr "fejl ved ændring af filtilstand for %s: %s\n" @@ -44,7 +44,7 @@ msgid "" msgstr "" "Project-Id-Version: util-linux-ng 2.13.1-rc1\n" "Report-Msgid-Bugs-To: Karel Zak <kzak@redhat.com>\n" -"POT-Creation-Date: 2009-04-29 15:34+0200\n" +"POT-Creation-Date: 2009-05-27 21:39+0200\n" "PO-Revision-Date: 2008-01-09 17:38+0200\n" "Last-Translator: Michael Piefel <piefel@informatik.hu-berlin.de>\n" "Language-Team: German <translation-team-de@lists.sourceforge.net>\n" @@ -7961,25 +7961,25 @@ msgstr "%s: Konnte „stat“ nicht auf eine temporäre Datei anwenden.\n" msgid "%s: can't read temporary file.\n" msgstr "%s: Konnte eine temporäre Datei nicht lesen.\n" -#: misc-utils/cal.c:355 misc-utils/cal.c:367 +#: misc-utils/cal.c:358 misc-utils/cal.c:370 #, fuzzy, c-format msgid "illegal day value: use 1-%d" msgstr "illegaler Wert für Jahr: benutzen Sie 1-9999" -#: misc-utils/cal.c:359 +#: misc-utils/cal.c:362 msgid "illegal month value: use 1-12" msgstr "illegaler Wert für Monat: benutzen Sie 1-12" -#: misc-utils/cal.c:363 +#: misc-utils/cal.c:366 msgid "illegal year value: use 1-9999" msgstr "illegaler Wert für Jahr: benutzen Sie 1-9999" -#: misc-utils/cal.c:457 +#: misc-utils/cal.c:460 #, c-format msgid "%s %d" msgstr "%s %d" -#: misc-utils/cal.c:848 +#: misc-utils/cal.c:851 #, fuzzy, c-format msgid "usage: cal [-13smjyV] [[[day] month] year]\n" msgstr "Aufruf: cal [-13smjyV] [[Monat] Jahr]\n" @@ -9701,52 +9701,52 @@ msgstr "Konnte Persönlichkeit nicht auf %s setzen" msgid "pid %d's %s scheduling policy: " msgstr "" -#: schedutils/chrt.c:108 +#: schedutils/chrt.c:112 #, fuzzy, c-format msgid "unknown\n" msgstr "unbekannter" -#: schedutils/chrt.c:112 +#: schedutils/chrt.c:116 #, c-format msgid "failed to get pid %d's attributes" msgstr "" -#: schedutils/chrt.c:114 +#: schedutils/chrt.c:118 #, c-format msgid "pid %d's %s scheduling priority: %d\n" msgstr "" -#: schedutils/chrt.c:130 +#: schedutils/chrt.c:147 #, c-format msgid "SCHED_%s min/max priority\t: %d/%d\n" msgstr "" -#: schedutils/chrt.c:133 +#: schedutils/chrt.c:150 #, fuzzy, c-format msgid "SCHED_%s not supported?\n" msgstr "NFS über TCP wird nicht unterstützt.\n" -#: schedutils/chrt.c:185 +#: schedutils/chrt.c:206 #, fuzzy msgid "failed to parse pid" msgstr "%s: fehlschlagenes Öffnen von: %s\n" -#: schedutils/chrt.c:207 +#: schedutils/chrt.c:228 #, fuzzy msgid "current" msgstr "ncount" -#: schedutils/chrt.c:215 +#: schedutils/chrt.c:236 #, fuzzy msgid "failed to parse priority" msgstr "Konnte Persönlichkeit nicht auf %s setzen" -#: schedutils/chrt.c:221 +#: schedutils/chrt.c:242 #, fuzzy, c-format msgid "failed to set pid %d's policy" msgstr "Konnte Persönlichkeit nicht auf %s setzen" -#: schedutils/chrt.c:230 +#: schedutils/chrt.c:251 #, fuzzy, c-format msgid "failed to execute %s" msgstr "ioctl() konnte Zeit nicht von %s lesen." @@ -10765,7 +10765,7 @@ msgstr "" msgid "full" msgstr "" -#: sys-utils/lscpu.c:129 sys-utils/lscpu.c:152 sys-utils/lscpu.c:431 +#: sys-utils/lscpu.c:129 sys-utils/lscpu.c:152 sys-utils/lscpu.c:441 #, fuzzy, c-format msgid "error: %s" msgstr "Fehler in regulärem Ausdruck: " @@ -10787,16 +10787,16 @@ msgstr "" "\n" "Fehler beim Schließen von Datei\n" -#: sys-utils/lscpu.c:481 +#: sys-utils/lscpu.c:491 #, fuzzy msgid "error: malloc failed" msgstr "„malloc“ schlug fehl" -#: sys-utils/lscpu.c:496 +#: sys-utils/lscpu.c:506 msgid "error: /sys filesystem is not accessable." msgstr "" -#: sys-utils/lscpu.c:514 +#: sys-utils/lscpu.c:524 #, c-format msgid "" "# The following is the parsable format, which can be fed to other\n" @@ -10805,66 +10805,66 @@ msgid "" "# CPU,Core,Socket,Node" msgstr "" -#: sys-utils/lscpu.c:580 +#: sys-utils/lscpu.c:590 msgid "Thread(s) per core:" msgstr "" -#: sys-utils/lscpu.c:581 +#: sys-utils/lscpu.c:591 msgid "Core(s) per socket:" msgstr "" -#: sys-utils/lscpu.c:582 +#: sys-utils/lscpu.c:592 msgid "CPU socket(s):" msgstr "" -#: sys-utils/lscpu.c:586 +#: sys-utils/lscpu.c:596 msgid "NUMA node(s):" msgstr "" -#: sys-utils/lscpu.c:588 +#: sys-utils/lscpu.c:598 msgid "Vendor ID:" msgstr "" -#: sys-utils/lscpu.c:590 +#: sys-utils/lscpu.c:600 msgid "CPU family:" msgstr "" -#: sys-utils/lscpu.c:592 +#: sys-utils/lscpu.c:602 msgid "Model:" msgstr "" -#: sys-utils/lscpu.c:594 +#: sys-utils/lscpu.c:604 msgid "Stepping:" msgstr "" -#: sys-utils/lscpu.c:596 +#: sys-utils/lscpu.c:606 msgid "CPU MHz:" msgstr "" -#: sys-utils/lscpu.c:599 sys-utils/lscpu.c:601 +#: sys-utils/lscpu.c:609 sys-utils/lscpu.c:611 #, fuzzy msgid "Virtualization:" msgstr "Alte Aufteilung:\n" -#: sys-utils/lscpu.c:604 +#: sys-utils/lscpu.c:614 msgid "Hypervisor vendor:" msgstr "" -#: sys-utils/lscpu.c:605 +#: sys-utils/lscpu.c:615 msgid "Virtualization type:" msgstr "" -#: sys-utils/lscpu.c:613 +#: sys-utils/lscpu.c:623 #, c-format msgid "%s cache:" msgstr "" -#: sys-utils/lscpu.c:621 +#: sys-utils/lscpu.c:631 #, fuzzy, c-format msgid "Usage: %s [option]\n" msgstr "Aufruf: %s [Optionen] gerät …\n" -#: sys-utils/lscpu.c:624 +#: sys-utils/lscpu.c:634 msgid "" "CPU architecture information helper\n" "\n" @@ -10873,7 +10873,7 @@ msgid "" " -s, --sysroot use the directory as a new system root.\n" msgstr "" -#: sys-utils/lscpu.c:673 +#: sys-utils/lscpu.c:683 #, fuzzy, c-format msgid "error: change working directory to %s." msgstr "Fehler beim Ändern der Zugriffsrechte von %s: %s\n" @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: util-linux 2.12m\n" "Report-Msgid-Bugs-To: Karel Zak <kzak@redhat.com>\n" -"POT-Creation-Date: 2009-04-29 15:34+0200\n" +"POT-Creation-Date: 2009-05-27 21:39+0200\n" "PO-Revision-Date: 2004-12-22 01:31+0100\n" "Last-Translator: Santiago Vila Doncel <sanvila@unex.es>\n" "Language-Team: Spanish <es@li.org>\n" @@ -7885,25 +7885,25 @@ msgstr "%s: no se puede ejecutar stat para fichero temporal.\n" msgid "%s: can't read temporary file.\n" msgstr "%s: no se puede leer el fichero temporal.\n" -#: misc-utils/cal.c:355 misc-utils/cal.c:367 +#: misc-utils/cal.c:358 misc-utils/cal.c:370 #, fuzzy, c-format msgid "illegal day value: use 1-%d" msgstr "Valor de año no permitido: utilice 1-9999" -#: misc-utils/cal.c:359 +#: misc-utils/cal.c:362 msgid "illegal month value: use 1-12" msgstr "Valor de mes no permitido: utilice 1-12" -#: misc-utils/cal.c:363 +#: misc-utils/cal.c:366 msgid "illegal year value: use 1-9999" msgstr "Valor de año no permitido: utilice 1-9999" -#: misc-utils/cal.c:457 +#: misc-utils/cal.c:460 #, c-format msgid "%s %d" msgstr "%s de %d" -#: misc-utils/cal.c:848 +#: misc-utils/cal.c:851 #, fuzzy, c-format msgid "usage: cal [-13smjyV] [[[day] month] year]\n" msgstr "uso: cal [-13smjyV] [[mes] año]\n" @@ -9587,51 +9587,51 @@ msgstr "Error al escribir la partición en %s\n" msgid "pid %d's %s scheduling policy: " msgstr "" -#: schedutils/chrt.c:108 +#: schedutils/chrt.c:112 #, fuzzy, c-format msgid "unknown\n" msgstr "desconocido" -#: schedutils/chrt.c:112 +#: schedutils/chrt.c:116 #, c-format msgid "failed to get pid %d's attributes" msgstr "" -#: schedutils/chrt.c:114 +#: schedutils/chrt.c:118 #, c-format msgid "pid %d's %s scheduling priority: %d\n" msgstr "" -#: schedutils/chrt.c:130 +#: schedutils/chrt.c:147 #, c-format msgid "SCHED_%s min/max priority\t: %d/%d\n" msgstr "" -#: schedutils/chrt.c:133 +#: schedutils/chrt.c:150 #, fuzzy, c-format msgid "SCHED_%s not supported?\n" msgstr "NFS sobre TCP no está soportado.\n" -#: schedutils/chrt.c:185 +#: schedutils/chrt.c:206 #, fuzzy msgid "failed to parse pid" msgstr "%s: fallo al abrir %s\n" -#: schedutils/chrt.c:207 +#: schedutils/chrt.c:228 msgid "current" msgstr "actual" -#: schedutils/chrt.c:215 +#: schedutils/chrt.c:236 #, fuzzy msgid "failed to parse priority" msgstr "Error al escribir la partición en %s\n" -#: schedutils/chrt.c:221 +#: schedutils/chrt.c:242 #, fuzzy, c-format msgid "failed to set pid %d's policy" msgstr "Error al escribir la partición en %s\n" -#: schedutils/chrt.c:230 +#: schedutils/chrt.c:251 #, fuzzy, c-format msgid "failed to execute %s" msgstr "ioctl() no ha podido leer la hora de %s" @@ -10649,7 +10649,7 @@ msgid "full" msgstr "" # ¿Qué significa? -#: sys-utils/lscpu.c:129 sys-utils/lscpu.c:152 sys-utils/lscpu.c:431 +#: sys-utils/lscpu.c:129 sys-utils/lscpu.c:152 sys-utils/lscpu.c:441 #, fuzzy, c-format msgid "error: %s" msgstr "RE error:" @@ -10671,16 +10671,16 @@ msgstr "" "\n" "Error al cerrar el fichero\n" -#: sys-utils/lscpu.c:481 +#: sys-utils/lscpu.c:491 #, fuzzy msgid "error: malloc failed" msgstr "La asignación de memoria (malloc) ha fallado" -#: sys-utils/lscpu.c:496 +#: sys-utils/lscpu.c:506 msgid "error: /sys filesystem is not accessable." msgstr "" -#: sys-utils/lscpu.c:514 +#: sys-utils/lscpu.c:524 #, c-format msgid "" "# The following is the parsable format, which can be fed to other\n" @@ -10689,66 +10689,66 @@ msgid "" "# CPU,Core,Socket,Node" msgstr "" -#: sys-utils/lscpu.c:580 +#: sys-utils/lscpu.c:590 msgid "Thread(s) per core:" msgstr "" -#: sys-utils/lscpu.c:581 +#: sys-utils/lscpu.c:591 msgid "Core(s) per socket:" msgstr "" -#: sys-utils/lscpu.c:582 +#: sys-utils/lscpu.c:592 msgid "CPU socket(s):" msgstr "" -#: sys-utils/lscpu.c:586 +#: sys-utils/lscpu.c:596 msgid "NUMA node(s):" msgstr "" -#: sys-utils/lscpu.c:588 +#: sys-utils/lscpu.c:598 msgid "Vendor ID:" msgstr "" -#: sys-utils/lscpu.c:590 +#: sys-utils/lscpu.c:600 msgid "CPU family:" msgstr "" -#: sys-utils/lscpu.c:592 +#: sys-utils/lscpu.c:602 msgid "Model:" msgstr "" -#: sys-utils/lscpu.c:594 +#: sys-utils/lscpu.c:604 msgid "Stepping:" msgstr "" -#: sys-utils/lscpu.c:596 +#: sys-utils/lscpu.c:606 msgid "CPU MHz:" msgstr "" -#: sys-utils/lscpu.c:599 sys-utils/lscpu.c:601 +#: sys-utils/lscpu.c:609 sys-utils/lscpu.c:611 #, fuzzy msgid "Virtualization:" msgstr "Situación anterior:\n" -#: sys-utils/lscpu.c:604 +#: sys-utils/lscpu.c:614 msgid "Hypervisor vendor:" msgstr "" -#: sys-utils/lscpu.c:605 +#: sys-utils/lscpu.c:615 msgid "Virtualization type:" msgstr "" -#: sys-utils/lscpu.c:613 +#: sys-utils/lscpu.c:623 #, c-format msgid "%s cache:" msgstr "" -#: sys-utils/lscpu.c:621 +#: sys-utils/lscpu.c:631 #, fuzzy, c-format msgid "Usage: %s [option]\n" msgstr "Uso: %s [opciones] dispositivo ...\n" -#: sys-utils/lscpu.c:624 +#: sys-utils/lscpu.c:634 msgid "" "CPU architecture information helper\n" "\n" @@ -10757,7 +10757,7 @@ msgid "" " -s, --sysroot use the directory as a new system root.\n" msgstr "" -#: sys-utils/lscpu.c:673 +#: sys-utils/lscpu.c:683 #, fuzzy, c-format msgid "error: change working directory to %s." msgstr "Error al cambiar el modo de %s: %s\n" @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: util-linux 2.11r\n" "Report-Msgid-Bugs-To: Karel Zak <kzak@redhat.com>\n" -"POT-Creation-Date: 2009-04-29 15:34+0200\n" +"POT-Creation-Date: 2009-05-27 21:39+0200\n" "PO-Revision-Date: 2002-05-19 20:04GMT+0300\n" "Last-Translator: Meelis Roos <mroos@linux.ee>\n" "Language-Team: Estonian <et@li.org>\n" @@ -7656,25 +7656,25 @@ msgstr "%s: ei suuda lugeda ajutise faili staatust\n" msgid "%s: can't read temporary file.\n" msgstr "%s: ei suuda lugeda ajutist faili\n" -#: misc-utils/cal.c:355 misc-utils/cal.c:367 +#: misc-utils/cal.c:358 misc-utils/cal.c:370 #, fuzzy, c-format msgid "illegal day value: use 1-%d" msgstr "Vigane aasta number, lubatud on 1-9999" -#: misc-utils/cal.c:359 +#: misc-utils/cal.c:362 msgid "illegal month value: use 1-12" msgstr "Vigane kuu number, lubatud on 1-12" -#: misc-utils/cal.c:363 +#: misc-utils/cal.c:366 msgid "illegal year value: use 1-9999" msgstr "Vigane aasta number, lubatud on 1-9999" -#: misc-utils/cal.c:457 +#: misc-utils/cal.c:460 #, c-format msgid "%s %d" msgstr "%s %d" -#: misc-utils/cal.c:848 +#: misc-utils/cal.c:851 #, fuzzy, c-format msgid "usage: cal [-13smjyV] [[[day] month] year]\n" msgstr "Kasutamine: cal [-13smjyV] [[kuu] aasta]\n" @@ -9277,50 +9277,50 @@ msgstr "" msgid "pid %d's %s scheduling policy: " msgstr "" -#: schedutils/chrt.c:108 +#: schedutils/chrt.c:112 #, fuzzy, c-format msgid "unknown\n" msgstr "tundmatu" -#: schedutils/chrt.c:112 +#: schedutils/chrt.c:116 #, c-format msgid "failed to get pid %d's attributes" msgstr "" -#: schedutils/chrt.c:114 +#: schedutils/chrt.c:118 #, c-format msgid "pid %d's %s scheduling priority: %d\n" msgstr "" -#: schedutils/chrt.c:130 +#: schedutils/chrt.c:147 #, c-format msgid "SCHED_%s min/max priority\t: %d/%d\n" msgstr "" -#: schedutils/chrt.c:133 +#: schedutils/chrt.c:150 #, c-format msgid "SCHED_%s not supported?\n" msgstr "" -#: schedutils/chrt.c:185 +#: schedutils/chrt.c:206 #, fuzzy msgid "failed to parse pid" msgstr "%s: Avamine ei õnnestunud: %s\n" -#: schedutils/chrt.c:207 +#: schedutils/chrt.c:228 msgid "current" msgstr "" -#: schedutils/chrt.c:215 +#: schedutils/chrt.c:236 msgid "failed to parse priority" msgstr "" -#: schedutils/chrt.c:221 +#: schedutils/chrt.c:242 #, c-format msgid "failed to set pid %d's policy" msgstr "" -#: schedutils/chrt.c:230 +#: schedutils/chrt.c:251 #, fuzzy, c-format msgid "failed to execute %s" msgstr "ioctl() abil kella lugemine %s kaudu ei õnnestunud" @@ -10291,7 +10291,7 @@ msgstr "" msgid "full" msgstr "" -#: sys-utils/lscpu.c:129 sys-utils/lscpu.c:152 sys-utils/lscpu.c:431 +#: sys-utils/lscpu.c:129 sys-utils/lscpu.c:152 sys-utils/lscpu.c:441 #, fuzzy, c-format msgid "error: %s" msgstr "positsioneerimise viga" @@ -10311,16 +10311,16 @@ msgstr "%s avamine ei õnnestunud" msgid "error: uname failed" msgstr "Viga %s sulgemisel\n" -#: sys-utils/lscpu.c:481 +#: sys-utils/lscpu.c:491 #, fuzzy msgid "error: malloc failed" msgstr "Mälu sai otsa" -#: sys-utils/lscpu.c:496 +#: sys-utils/lscpu.c:506 msgid "error: /sys filesystem is not accessable." msgstr "" -#: sys-utils/lscpu.c:514 +#: sys-utils/lscpu.c:524 #, c-format msgid "" "# The following is the parsable format, which can be fed to other\n" @@ -10329,65 +10329,65 @@ msgid "" "# CPU,Core,Socket,Node" msgstr "" -#: sys-utils/lscpu.c:580 +#: sys-utils/lscpu.c:590 msgid "Thread(s) per core:" msgstr "" -#: sys-utils/lscpu.c:581 +#: sys-utils/lscpu.c:591 msgid "Core(s) per socket:" msgstr "" -#: sys-utils/lscpu.c:582 +#: sys-utils/lscpu.c:592 msgid "CPU socket(s):" msgstr "" -#: sys-utils/lscpu.c:586 +#: sys-utils/lscpu.c:596 msgid "NUMA node(s):" msgstr "" -#: sys-utils/lscpu.c:588 +#: sys-utils/lscpu.c:598 msgid "Vendor ID:" msgstr "" -#: sys-utils/lscpu.c:590 +#: sys-utils/lscpu.c:600 msgid "CPU family:" msgstr "" -#: sys-utils/lscpu.c:592 +#: sys-utils/lscpu.c:602 msgid "Model:" msgstr "" -#: sys-utils/lscpu.c:594 +#: sys-utils/lscpu.c:604 msgid "Stepping:" msgstr "" -#: sys-utils/lscpu.c:596 +#: sys-utils/lscpu.c:606 msgid "CPU MHz:" msgstr "" -#: sys-utils/lscpu.c:599 sys-utils/lscpu.c:601 +#: sys-utils/lscpu.c:609 sys-utils/lscpu.c:611 msgid "Virtualization:" msgstr "" -#: sys-utils/lscpu.c:604 +#: sys-utils/lscpu.c:614 msgid "Hypervisor vendor:" msgstr "" -#: sys-utils/lscpu.c:605 +#: sys-utils/lscpu.c:615 msgid "Virtualization type:" msgstr "" -#: sys-utils/lscpu.c:613 +#: sys-utils/lscpu.c:623 #, c-format msgid "%s cache:" msgstr "" -#: sys-utils/lscpu.c:621 +#: sys-utils/lscpu.c:631 #, fuzzy, c-format msgid "Usage: %s [option]\n" msgstr "Kasutamine: %s [ võtmed ] seade ...\n" -#: sys-utils/lscpu.c:624 +#: sys-utils/lscpu.c:634 msgid "" "CPU architecture information helper\n" "\n" @@ -10396,7 +10396,7 @@ msgid "" " -s, --sysroot use the directory as a new system root.\n" msgstr "" -#: sys-utils/lscpu.c:673 +#: sys-utils/lscpu.c:683 #, fuzzy, c-format msgid "error: change working directory to %s." msgstr "Viga sektori %lu kirjutamisel seadmele %s\n" @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: util-linux 2.13-pre2\n" "Report-Msgid-Bugs-To: Karel Zak <kzak@redhat.com>\n" -"POT-Creation-Date: 2009-04-29 15:34+0200\n" +"POT-Creation-Date: 2009-05-27 21:39+0200\n" "PO-Revision-Date: 2005-08-15 18:45+0200\n" "Last-Translator: Mikel Olasagasti <hey_neken@mundurat.net>\n" "Language-Team: Basque <translation-team-eu@lists.sourceforge.net>\n" @@ -7202,25 +7202,25 @@ msgstr "" msgid "%s: can't read temporary file.\n" msgstr "" -#: misc-utils/cal.c:355 misc-utils/cal.c:367 +#: misc-utils/cal.c:358 misc-utils/cal.c:370 #, fuzzy, c-format msgid "illegal day value: use 1-%d" msgstr "Baliogabeok buru baloreak" -#: misc-utils/cal.c:359 +#: misc-utils/cal.c:362 msgid "illegal month value: use 1-12" msgstr "" -#: misc-utils/cal.c:363 +#: misc-utils/cal.c:366 msgid "illegal year value: use 1-9999" msgstr "" -#: misc-utils/cal.c:457 +#: misc-utils/cal.c:460 #, c-format msgid "%s %d" msgstr "" -#: misc-utils/cal.c:848 +#: misc-utils/cal.c:851 #, c-format msgid "usage: cal [-13smjyV] [[[day] month] year]\n" msgstr "" @@ -8815,49 +8815,49 @@ msgstr "" msgid "pid %d's %s scheduling policy: " msgstr "" -#: schedutils/chrt.c:108 +#: schedutils/chrt.c:112 #, fuzzy, c-format msgid "unknown\n" msgstr "Ezezaguna" -#: schedutils/chrt.c:112 +#: schedutils/chrt.c:116 #, c-format msgid "failed to get pid %d's attributes" msgstr "" -#: schedutils/chrt.c:114 +#: schedutils/chrt.c:118 #, c-format msgid "pid %d's %s scheduling priority: %d\n" msgstr "" -#: schedutils/chrt.c:130 +#: schedutils/chrt.c:147 #, c-format msgid "SCHED_%s min/max priority\t: %d/%d\n" msgstr "" -#: schedutils/chrt.c:133 +#: schedutils/chrt.c:150 #, c-format msgid "SCHED_%s not supported?\n" msgstr "" -#: schedutils/chrt.c:185 +#: schedutils/chrt.c:206 msgid "failed to parse pid" msgstr "" -#: schedutils/chrt.c:207 +#: schedutils/chrt.c:228 msgid "current" msgstr "" -#: schedutils/chrt.c:215 +#: schedutils/chrt.c:236 msgid "failed to parse priority" msgstr "" -#: schedutils/chrt.c:221 +#: schedutils/chrt.c:242 #, c-format msgid "failed to set pid %d's policy" msgstr "" -#: schedutils/chrt.c:230 +#: schedutils/chrt.c:251 #, c-format msgid "failed to execute %s" msgstr "" @@ -9825,7 +9825,7 @@ msgstr "" msgid "full" msgstr "" -#: sys-utils/lscpu.c:129 sys-utils/lscpu.c:152 sys-utils/lscpu.c:431 +#: sys-utils/lscpu.c:129 sys-utils/lscpu.c:152 sys-utils/lscpu.c:441 #, c-format msgid "error: %s" msgstr "" @@ -9843,16 +9843,16 @@ msgstr "" msgid "error: uname failed" msgstr "" -#: sys-utils/lscpu.c:481 +#: sys-utils/lscpu.c:491 #, fuzzy msgid "error: malloc failed" msgstr "settimeofday()-ek huts egin du" -#: sys-utils/lscpu.c:496 +#: sys-utils/lscpu.c:506 msgid "error: /sys filesystem is not accessable." msgstr "" -#: sys-utils/lscpu.c:514 +#: sys-utils/lscpu.c:524 #, c-format msgid "" "# The following is the parsable format, which can be fed to other\n" @@ -9861,65 +9861,65 @@ msgid "" "# CPU,Core,Socket,Node" msgstr "" -#: sys-utils/lscpu.c:580 +#: sys-utils/lscpu.c:590 msgid "Thread(s) per core:" msgstr "" -#: sys-utils/lscpu.c:581 +#: sys-utils/lscpu.c:591 msgid "Core(s) per socket:" msgstr "" -#: sys-utils/lscpu.c:582 +#: sys-utils/lscpu.c:592 msgid "CPU socket(s):" msgstr "" -#: sys-utils/lscpu.c:586 +#: sys-utils/lscpu.c:596 msgid "NUMA node(s):" msgstr "" -#: sys-utils/lscpu.c:588 +#: sys-utils/lscpu.c:598 msgid "Vendor ID:" msgstr "" -#: sys-utils/lscpu.c:590 +#: sys-utils/lscpu.c:600 msgid "CPU family:" msgstr "" -#: sys-utils/lscpu.c:592 +#: sys-utils/lscpu.c:602 msgid "Model:" msgstr "" -#: sys-utils/lscpu.c:594 +#: sys-utils/lscpu.c:604 msgid "Stepping:" msgstr "" -#: sys-utils/lscpu.c:596 +#: sys-utils/lscpu.c:606 msgid "CPU MHz:" msgstr "" -#: sys-utils/lscpu.c:599 sys-utils/lscpu.c:601 +#: sys-utils/lscpu.c:609 sys-utils/lscpu.c:611 msgid "Virtualization:" msgstr "" -#: sys-utils/lscpu.c:604 +#: sys-utils/lscpu.c:614 msgid "Hypervisor vendor:" msgstr "" -#: sys-utils/lscpu.c:605 +#: sys-utils/lscpu.c:615 msgid "Virtualization type:" msgstr "" -#: sys-utils/lscpu.c:613 +#: sys-utils/lscpu.c:623 #, c-format msgid "%s cache:" msgstr "" -#: sys-utils/lscpu.c:621 +#: sys-utils/lscpu.c:631 #, fuzzy, c-format msgid "Usage: %s [option]\n" msgstr "erabilera: %s [ -n] gailua\n" -#: sys-utils/lscpu.c:624 +#: sys-utils/lscpu.c:634 msgid "" "CPU architecture information helper\n" "\n" @@ -9928,7 +9928,7 @@ msgid "" " -s, --sysroot use the directory as a new system root.\n" msgstr "" -#: sys-utils/lscpu.c:673 +#: sys-utils/lscpu.c:683 #, c-format msgid "error: change working directory to %s." msgstr "" @@ -19,7 +19,7 @@ msgid "" msgstr "" "Project-Id-Version: util-linux-ng 2.14.1-rc2\n" "Report-Msgid-Bugs-To: Karel Zak <kzak@redhat.com>\n" -"POT-Creation-Date: 2009-04-29 15:34+0200\n" +"POT-Creation-Date: 2009-05-27 21:39+0200\n" "PO-Revision-Date: 2009-03-08 14:17+0200\n" "Last-Translator: Lauri Nurmi <lanurmi@iki.fi>\n" "Language-Team: Finnish <translation-team-fi@lists.sourceforge.net>\n" @@ -7740,25 +7740,25 @@ msgstr "%s: väliaikaistiedoston tilaa ei voi lukea.\n" msgid "%s: can't read temporary file.\n" msgstr "%s: väliaikaistiedostoa ei voi avata.\n" -#: misc-utils/cal.c:355 misc-utils/cal.c:367 +#: misc-utils/cal.c:358 misc-utils/cal.c:370 #, c-format msgid "illegal day value: use 1-%d" msgstr "virheellinen päivän arvo: käytä 1-%d" -#: misc-utils/cal.c:359 +#: misc-utils/cal.c:362 msgid "illegal month value: use 1-12" msgstr "virheellinen kuukauden arvo: käytä 1-12" -#: misc-utils/cal.c:363 +#: misc-utils/cal.c:366 msgid "illegal year value: use 1-9999" msgstr "virheellinen vuoden arvo: käytä 1-9999" -#: misc-utils/cal.c:457 +#: misc-utils/cal.c:460 #, c-format msgid "%s %d" msgstr "%s %d" -#: misc-utils/cal.c:848 +#: misc-utils/cal.c:851 #, c-format msgid "usage: cal [-13smjyV] [[[day] month] year]\n" msgstr "käyttö: cal [-13smjyV] [[[päivä] kuukausi] vuosi]\n" @@ -9455,52 +9455,52 @@ msgstr "Osion kirjoitus epäonnistui laitteelle %s" msgid "pid %d's %s scheduling policy: " msgstr "" -#: schedutils/chrt.c:108 +#: schedutils/chrt.c:112 #, fuzzy, c-format msgid "unknown\n" msgstr "tuntemattomassa " -#: schedutils/chrt.c:112 +#: schedutils/chrt.c:116 #, c-format msgid "failed to get pid %d's attributes" msgstr "" -#: schedutils/chrt.c:114 +#: schedutils/chrt.c:118 #, c-format msgid "pid %d's %s scheduling priority: %d\n" msgstr "" -#: schedutils/chrt.c:130 +#: schedutils/chrt.c:147 #, c-format msgid "SCHED_%s min/max priority\t: %d/%d\n" msgstr "" -#: schedutils/chrt.c:133 +#: schedutils/chrt.c:150 #, fuzzy, c-format msgid "SCHED_%s not supported?\n" msgstr "NFS yli TCP:n ei ole tuettu.\n" -#: schedutils/chrt.c:185 +#: schedutils/chrt.c:206 #, fuzzy msgid "failed to parse pid" msgstr "%s: avaaminen epäonnistui: %s\n" -#: schedutils/chrt.c:207 +#: schedutils/chrt.c:228 #, fuzzy msgid "current" msgstr "ncount" -#: schedutils/chrt.c:215 +#: schedutils/chrt.c:236 #, fuzzy msgid "failed to parse priority" msgstr "Osion kirjoitus epäonnistui laitteelle %s" -#: schedutils/chrt.c:221 +#: schedutils/chrt.c:242 #, fuzzy, c-format msgid "failed to set pid %d's policy" msgstr "Osion kirjoitus epäonnistui laitteelle %s" -#: schedutils/chrt.c:230 +#: schedutils/chrt.c:251 #, fuzzy, c-format msgid "failed to execute %s" msgstr "ioctl() ei onnistunut lukemaan aikaa kohteesta %s" @@ -10502,7 +10502,7 @@ msgstr "" msgid "full" msgstr "" -#: sys-utils/lscpu.c:129 sys-utils/lscpu.c:152 sys-utils/lscpu.c:431 +#: sys-utils/lscpu.c:129 sys-utils/lscpu.c:152 sys-utils/lscpu.c:441 #, fuzzy, c-format msgid "error: %s" msgstr "Virhe säännöllisessä lausekkeessa: " @@ -10522,16 +10522,16 @@ msgstr "kirjoittaminen vakiotulosteeseen epäonnistui" msgid "error: uname failed" msgstr "virhe: UUID:n jäsennys epäonnistui" -#: sys-utils/lscpu.c:481 +#: sys-utils/lscpu.c:491 #, fuzzy msgid "error: malloc failed" msgstr "malloc epäonnistui" -#: sys-utils/lscpu.c:496 +#: sys-utils/lscpu.c:506 msgid "error: /sys filesystem is not accessable." msgstr "" -#: sys-utils/lscpu.c:514 +#: sys-utils/lscpu.c:524 #, c-format msgid "" "# The following is the parsable format, which can be fed to other\n" @@ -10540,66 +10540,66 @@ msgid "" "# CPU,Core,Socket,Node" msgstr "" -#: sys-utils/lscpu.c:580 +#: sys-utils/lscpu.c:590 msgid "Thread(s) per core:" msgstr "" -#: sys-utils/lscpu.c:581 +#: sys-utils/lscpu.c:591 msgid "Core(s) per socket:" msgstr "" -#: sys-utils/lscpu.c:582 +#: sys-utils/lscpu.c:592 msgid "CPU socket(s):" msgstr "" -#: sys-utils/lscpu.c:586 +#: sys-utils/lscpu.c:596 msgid "NUMA node(s):" msgstr "" -#: sys-utils/lscpu.c:588 +#: sys-utils/lscpu.c:598 msgid "Vendor ID:" msgstr "" -#: sys-utils/lscpu.c:590 +#: sys-utils/lscpu.c:600 msgid "CPU family:" msgstr "" -#: sys-utils/lscpu.c:592 +#: sys-utils/lscpu.c:602 msgid "Model:" msgstr "" -#: sys-utils/lscpu.c:594 +#: sys-utils/lscpu.c:604 msgid "Stepping:" msgstr "" -#: sys-utils/lscpu.c:596 +#: sys-utils/lscpu.c:606 msgid "CPU MHz:" msgstr "" -#: sys-utils/lscpu.c:599 sys-utils/lscpu.c:601 +#: sys-utils/lscpu.c:609 sys-utils/lscpu.c:611 #, fuzzy msgid "Virtualization:" msgstr "Vanha tilanne:\n" -#: sys-utils/lscpu.c:604 +#: sys-utils/lscpu.c:614 msgid "Hypervisor vendor:" msgstr "" -#: sys-utils/lscpu.c:605 +#: sys-utils/lscpu.c:615 msgid "Virtualization type:" msgstr "" -#: sys-utils/lscpu.c:613 +#: sys-utils/lscpu.c:623 #, c-format msgid "%s cache:" msgstr "" -#: sys-utils/lscpu.c:621 +#: sys-utils/lscpu.c:631 #, fuzzy, c-format msgid "Usage: %s [option]\n" msgstr "Käyttö: %s [valitsimet] laite ...\n" -#: sys-utils/lscpu.c:624 +#: sys-utils/lscpu.c:634 msgid "" "CPU architecture information helper\n" "\n" @@ -10608,7 +10608,7 @@ msgid "" " -s, --sysroot use the directory as a new system root.\n" msgstr "" -#: sys-utils/lscpu.c:673 +#: sys-utils/lscpu.c:683 #, fuzzy, c-format msgid "error: change working directory to %s." msgstr "virhe muutettaessa tiedoston %s tilaa: %s\n" @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: util-linux-ng 2.15-rc2\n" "Report-Msgid-Bugs-To: Karel Zak <kzak@redhat.com>\n" -"POT-Creation-Date: 2009-04-29 15:34+0200\n" +"POT-Creation-Date: 2009-05-27 21:39+0200\n" "PO-Revision-Date: 2009-04-19 22:13+0100\n" "Last-Translator: Nicolas Provost <nprovost@quadriv.com>\n" "Language-Team: French <traduc@traduc.org>\n" @@ -7920,25 +7920,25 @@ msgstr "%s: ne peut évaluer par stat() le fichier temporaire.\n" msgid "%s: can't read temporary file.\n" msgstr "%s: ne peut lire du fichier temporaire.\n" -#: misc-utils/cal.c:355 misc-utils/cal.c:367 +#: misc-utils/cal.c:358 misc-utils/cal.c:370 #, c-format msgid "illegal day value: use 1-%d" msgstr "valeur de jour incorrecte : utiliser 1-%d" -#: misc-utils/cal.c:359 +#: misc-utils/cal.c:362 msgid "illegal month value: use 1-12" msgstr "valeur de mois illégal: utiliser 1-12" -#: misc-utils/cal.c:363 +#: misc-utils/cal.c:366 msgid "illegal year value: use 1-9999" msgstr "valeur d'année illégale: utiliser 1-9999" -#: misc-utils/cal.c:457 +#: misc-utils/cal.c:460 #, c-format msgid "%s %d" msgstr "%s %d" -#: misc-utils/cal.c:848 +#: misc-utils/cal.c:851 #, c-format msgid "usage: cal [-13smjyV] [[[day] month] year]\n" msgstr "Utilisation : cal [-13smjyV] [[[jour] mois] année]\n" @@ -9711,49 +9711,49 @@ msgstr "impossible d'obtenir la stratégie d'exécution du pid %d" msgid "pid %d's %s scheduling policy: " msgstr "stratégie de planification d'exécution pour pid %d %s :" -#: schedutils/chrt.c:108 +#: schedutils/chrt.c:112 #, c-format msgid "unknown\n" msgstr "inconnu\n" -#: schedutils/chrt.c:112 +#: schedutils/chrt.c:116 #, c-format msgid "failed to get pid %d's attributes" msgstr "impossible d'obtenir les attributs pour le pid %d" -#: schedutils/chrt.c:114 +#: schedutils/chrt.c:118 #, c-format msgid "pid %d's %s scheduling priority: %d\n" msgstr "priorité de planification d'exécution pour le pid %d %s : %d\n" -#: schedutils/chrt.c:130 +#: schedutils/chrt.c:147 #, c-format msgid "SCHED_%s min/max priority\t: %d/%d\n" msgstr "SCHED_%s priorité min/max \t: %d/%d\n" -#: schedutils/chrt.c:133 +#: schedutils/chrt.c:150 #, c-format msgid "SCHED_%s not supported?\n" msgstr "SCHED_%s non supporté(e) ?\n" -#: schedutils/chrt.c:185 +#: schedutils/chrt.c:206 msgid "failed to parse pid" msgstr "analyse impossible pour ce pid" -#: schedutils/chrt.c:207 +#: schedutils/chrt.c:228 msgid "current" msgstr "actuel" -#: schedutils/chrt.c:215 +#: schedutils/chrt.c:236 msgid "failed to parse priority" msgstr "impossible d'analyser la priorité" -#: schedutils/chrt.c:221 +#: schedutils/chrt.c:242 #, c-format msgid "failed to set pid %d's policy" msgstr "impossible de fixer la stratégie d'exécution du pid %d" -#: schedutils/chrt.c:230 +#: schedutils/chrt.c:251 #, c-format msgid "failed to execute %s" msgstr "impossible d'exécuter %s" @@ -10791,7 +10791,7 @@ msgstr "para" msgid "full" msgstr "complet" -#: sys-utils/lscpu.c:129 sys-utils/lscpu.c:152 sys-utils/lscpu.c:431 +#: sys-utils/lscpu.c:129 sys-utils/lscpu.c:152 sys-utils/lscpu.c:441 #, c-format msgid "error: %s" msgstr "erreur : %s " @@ -10809,15 +10809,15 @@ msgstr "erreur : échec de \"strdup\"" msgid "error: uname failed" msgstr "erreur : échec de \"uname\"" -#: sys-utils/lscpu.c:481 +#: sys-utils/lscpu.c:491 msgid "error: malloc failed" msgstr "erreur : échec de \"malloc\"" -#: sys-utils/lscpu.c:496 +#: sys-utils/lscpu.c:506 msgid "error: /sys filesystem is not accessable." msgstr "erreur : le système de fichiers /sys est inaccessible." -#: sys-utils/lscpu.c:514 +#: sys-utils/lscpu.c:524 #, c-format msgid "" "# The following is the parsable format, which can be fed to other\n" @@ -10830,65 +10830,65 @@ msgstr "" "# un unique numéro ID partant de zéro.\n" "# CPU, coeur, support (socket), noeud" -#: sys-utils/lscpu.c:580 +#: sys-utils/lscpu.c:590 msgid "Thread(s) per core:" msgstr "Thread(s) par coeur :" -#: sys-utils/lscpu.c:581 +#: sys-utils/lscpu.c:591 msgid "Core(s) per socket:" msgstr "Coeur(s) par support CPU :" -#: sys-utils/lscpu.c:582 +#: sys-utils/lscpu.c:592 msgid "CPU socket(s):" msgstr "Support(s) CPU :" -#: sys-utils/lscpu.c:586 +#: sys-utils/lscpu.c:596 msgid "NUMA node(s):" msgstr "Noeud(s) NUMA :" -#: sys-utils/lscpu.c:588 +#: sys-utils/lscpu.c:598 msgid "Vendor ID:" msgstr "ID du vendeur :" -#: sys-utils/lscpu.c:590 +#: sys-utils/lscpu.c:600 msgid "CPU family:" msgstr "Famille CPU :" -#: sys-utils/lscpu.c:592 +#: sys-utils/lscpu.c:602 msgid "Model:" msgstr "Modèle :" -#: sys-utils/lscpu.c:594 +#: sys-utils/lscpu.c:604 msgid "Stepping:" msgstr "Version :" -#: sys-utils/lscpu.c:596 +#: sys-utils/lscpu.c:606 msgid "CPU MHz:" msgstr "CPU MHz :" -#: sys-utils/lscpu.c:599 sys-utils/lscpu.c:601 +#: sys-utils/lscpu.c:609 sys-utils/lscpu.c:611 msgid "Virtualization:" msgstr "Virtualisation :" -#: sys-utils/lscpu.c:604 +#: sys-utils/lscpu.c:614 msgid "Hypervisor vendor:" msgstr "Vendeur hyperviseur :" -#: sys-utils/lscpu.c:605 +#: sys-utils/lscpu.c:615 msgid "Virtualization type:" msgstr "Type de virtualisation :" -#: sys-utils/lscpu.c:613 +#: sys-utils/lscpu.c:623 #, c-format msgid "%s cache:" msgstr "%s cache :" -#: sys-utils/lscpu.c:621 +#: sys-utils/lscpu.c:631 #, c-format msgid "Usage: %s [option]\n" msgstr "Utilisation : %s [options]\n" -#: sys-utils/lscpu.c:624 +#: sys-utils/lscpu.c:634 msgid "" "CPU architecture information helper\n" "\n" @@ -10902,7 +10902,7 @@ msgstr "" " -p, --parse sortie en format analysable et non affichable.\n" " -s, --sysroot spécifie un répertoire comme racine du système.\n" -#: sys-utils/lscpu.c:673 +#: sys-utils/lscpu.c:683 #, c-format msgid "error: change working directory to %s." msgstr "erreur : changement de répertoire de travail en %s." @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: util-linux-ng 2.14-rc2\n" "Report-Msgid-Bugs-To: Karel Zak <kzak@redhat.com>\n" -"POT-Creation-Date: 2009-04-29 15:34+0200\n" +"POT-Creation-Date: 2009-05-27 21:39+0200\n" "PO-Revision-Date: 2008-05-21 18:25+0200\n" "Last-Translator: Gabor Kelemen <kelemeng@gnome.hu>\n" "Language-Team: Hungarian <translation-team-hu@lists.sourceforge.net>\n" @@ -7806,25 +7806,25 @@ msgstr "%s: nem érhetÅ‘ el az ideiglenes fájl.\n" msgid "%s: can't read temporary file.\n" msgstr "%s: nem olvasható az ideiglenes fájl.\n" -#: misc-utils/cal.c:355 misc-utils/cal.c:367 +#: misc-utils/cal.c:358 misc-utils/cal.c:370 #, c-format msgid "illegal day value: use 1-%d" msgstr "érvénytelen napérték: használjon 1-%d közötti értéket" -#: misc-utils/cal.c:359 +#: misc-utils/cal.c:362 msgid "illegal month value: use 1-12" msgstr "érvénytelen hónapérték: használjon 1-12 közötti értéket" -#: misc-utils/cal.c:363 +#: misc-utils/cal.c:366 msgid "illegal year value: use 1-9999" msgstr "érvénytelen évérték: használjon 1-9999 közötti értéket" -#: misc-utils/cal.c:457 +#: misc-utils/cal.c:460 #, c-format msgid "%s %d" msgstr "%s %d" -#: misc-utils/cal.c:848 +#: misc-utils/cal.c:851 #, c-format msgid "usage: cal [-13smjyV] [[[day] month] year]\n" msgstr "Használat: cal [-13smjyV] [[[nap] hónap] év]\n" @@ -9570,52 +9570,52 @@ msgstr "A személyiség beállÃtása meghiúsult a következÅ‘re: %s" msgid "pid %d's %s scheduling policy: " msgstr "" -#: schedutils/chrt.c:108 +#: schedutils/chrt.c:112 #, fuzzy, c-format msgid "unknown\n" msgstr "ismeretlen" -#: schedutils/chrt.c:112 +#: schedutils/chrt.c:116 #, c-format msgid "failed to get pid %d's attributes" msgstr "" -#: schedutils/chrt.c:114 +#: schedutils/chrt.c:118 #, c-format msgid "pid %d's %s scheduling priority: %d\n" msgstr "" -#: schedutils/chrt.c:130 +#: schedutils/chrt.c:147 #, c-format msgid "SCHED_%s min/max priority\t: %d/%d\n" msgstr "" -#: schedutils/chrt.c:133 +#: schedutils/chrt.c:150 #, c-format msgid "SCHED_%s not supported?\n" msgstr "" -#: schedutils/chrt.c:185 +#: schedutils/chrt.c:206 #, fuzzy msgid "failed to parse pid" msgstr "%s: a következÅ‘ megnyitása meghiúsult: %s\n" -#: schedutils/chrt.c:207 +#: schedutils/chrt.c:228 #, fuzzy msgid "current" msgstr "n.szám" -#: schedutils/chrt.c:215 +#: schedutils/chrt.c:236 #, fuzzy msgid "failed to parse priority" msgstr "A személyiség beállÃtása meghiúsult a következÅ‘re: %s" -#: schedutils/chrt.c:221 +#: schedutils/chrt.c:242 #, fuzzy, c-format msgid "failed to set pid %d's policy" msgstr "A személyiség beállÃtása meghiúsult a következÅ‘re: %s" -#: schedutils/chrt.c:230 +#: schedutils/chrt.c:251 #, fuzzy, c-format msgid "failed to execute %s" msgstr "a tÃpusparancsfájl (%s) olvasása meghiúsult" @@ -10635,7 +10635,7 @@ msgstr "" msgid "full" msgstr "" -#: sys-utils/lscpu.c:129 sys-utils/lscpu.c:152 sys-utils/lscpu.c:431 +#: sys-utils/lscpu.c:129 sys-utils/lscpu.c:152 sys-utils/lscpu.c:441 #, fuzzy, c-format msgid "error: %s" msgstr "RE hiba: " @@ -10655,16 +10655,16 @@ msgstr "a szabványos kimenetre Ãrás meghiúsult" msgid "error: uname failed" msgstr "hiba: az UUID feldolgozás meghiúsult" -#: sys-utils/lscpu.c:481 +#: sys-utils/lscpu.c:491 #, fuzzy msgid "error: malloc failed" msgstr "a malloc meghiúsult" -#: sys-utils/lscpu.c:496 +#: sys-utils/lscpu.c:506 msgid "error: /sys filesystem is not accessable." msgstr "" -#: sys-utils/lscpu.c:514 +#: sys-utils/lscpu.c:524 #, c-format msgid "" "# The following is the parsable format, which can be fed to other\n" @@ -10673,66 +10673,66 @@ msgid "" "# CPU,Core,Socket,Node" msgstr "" -#: sys-utils/lscpu.c:580 +#: sys-utils/lscpu.c:590 msgid "Thread(s) per core:" msgstr "" -#: sys-utils/lscpu.c:581 +#: sys-utils/lscpu.c:591 msgid "Core(s) per socket:" msgstr "" -#: sys-utils/lscpu.c:582 +#: sys-utils/lscpu.c:592 msgid "CPU socket(s):" msgstr "" -#: sys-utils/lscpu.c:586 +#: sys-utils/lscpu.c:596 msgid "NUMA node(s):" msgstr "" -#: sys-utils/lscpu.c:588 +#: sys-utils/lscpu.c:598 msgid "Vendor ID:" msgstr "" -#: sys-utils/lscpu.c:590 +#: sys-utils/lscpu.c:600 msgid "CPU family:" msgstr "" -#: sys-utils/lscpu.c:592 +#: sys-utils/lscpu.c:602 msgid "Model:" msgstr "" -#: sys-utils/lscpu.c:594 +#: sys-utils/lscpu.c:604 msgid "Stepping:" msgstr "" -#: sys-utils/lscpu.c:596 +#: sys-utils/lscpu.c:606 msgid "CPU MHz:" msgstr "" -#: sys-utils/lscpu.c:599 sys-utils/lscpu.c:601 +#: sys-utils/lscpu.c:609 sys-utils/lscpu.c:611 #, fuzzy msgid "Virtualization:" msgstr "Régi helyzet:\n" -#: sys-utils/lscpu.c:604 +#: sys-utils/lscpu.c:614 msgid "Hypervisor vendor:" msgstr "" -#: sys-utils/lscpu.c:605 +#: sys-utils/lscpu.c:615 msgid "Virtualization type:" msgstr "" -#: sys-utils/lscpu.c:613 +#: sys-utils/lscpu.c:623 #, c-format msgid "%s cache:" msgstr "" -#: sys-utils/lscpu.c:621 +#: sys-utils/lscpu.c:631 #, fuzzy, c-format msgid "Usage: %s [option]\n" msgstr "Használat: %s [kapcsolók] eszköz ...\n" -#: sys-utils/lscpu.c:624 +#: sys-utils/lscpu.c:634 msgid "" "CPU architecture information helper\n" "\n" @@ -10741,7 +10741,7 @@ msgid "" " -s, --sysroot use the directory as a new system root.\n" msgstr "" -#: sys-utils/lscpu.c:673 +#: sys-utils/lscpu.c:683 #, fuzzy, c-format msgid "error: change working directory to %s." msgstr "hiba a(z) %s módjának módosÃtásakor: %s\n" @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: util-linux-ng 2.15-rc2\n" "Report-Msgid-Bugs-To: Karel Zak <kzak@redhat.com>\n" -"POT-Creation-Date: 2009-04-29 15:34+0200\n" +"POT-Creation-Date: 2009-05-27 21:39+0200\n" "PO-Revision-Date: 2009-04-20 09:00+0700\n" "Last-Translator: Arif E. Nugroho <arif_endro@yahoo.com>\n" "Language-Team: Indonesian <translation-team-id@lists.sourceforge.net>\n" @@ -7800,25 +7800,25 @@ msgstr "%s: tidak dapat memperoleh statistik file sementara.\n" msgid "%s: can't read temporary file.\n" msgstr "%s: tidak dapat membaca file sementara.\n" -#: misc-utils/cal.c:355 misc-utils/cal.c:367 +#: misc-utils/cal.c:358 misc-utils/cal.c:370 #, c-format msgid "illegal day value: use 1-%d" msgstr "nilai hari ilegal: gunakan 1-%d" -#: misc-utils/cal.c:359 +#: misc-utils/cal.c:362 msgid "illegal month value: use 1-12" msgstr "nilai bulan ilegal: gunakan 1-12" -#: misc-utils/cal.c:363 +#: misc-utils/cal.c:366 msgid "illegal year value: use 1-9999" msgstr "nilai tahun ilegal: gunakan 1-9999" -#: misc-utils/cal.c:457 +#: misc-utils/cal.c:460 #, c-format msgid "%s %d" msgstr "%s %d" -#: misc-utils/cal.c:848 +#: misc-utils/cal.c:851 #, c-format msgid "usage: cal [-13smjyV] [[[day] month] year]\n" msgstr "penggunaan: cal [-13smjyV] [[[hari] bulan] tahun]\n" @@ -9588,49 +9588,49 @@ msgstr "gagal mendapatkan kebijakan pid %d" msgid "pid %d's %s scheduling policy: " msgstr "pid %d %s kebijakan antrian: " -#: schedutils/chrt.c:108 +#: schedutils/chrt.c:112 #, c-format msgid "unknown\n" msgstr "tidak diketahui\n" -#: schedutils/chrt.c:112 +#: schedutils/chrt.c:116 #, c-format msgid "failed to get pid %d's attributes" msgstr "gagal mendapatkan atribut pid %d" -#: schedutils/chrt.c:114 +#: schedutils/chrt.c:118 #, c-format msgid "pid %d's %s scheduling priority: %d\n" msgstr "pid %d %s prioritas antrian: %d\n" -#: schedutils/chrt.c:130 +#: schedutils/chrt.c:147 #, c-format msgid "SCHED_%s min/max priority\t: %d/%d\n" msgstr "SCHED_%s min/max prioritas\t: %d/%d\n" -#: schedutils/chrt.c:133 +#: schedutils/chrt.c:150 #, c-format msgid "SCHED_%s not supported?\n" msgstr "SCHED_%s tidak didukung?\n" -#: schedutils/chrt.c:185 +#: schedutils/chrt.c:206 msgid "failed to parse pid" msgstr "gagal mendapatkan pid" -#: schedutils/chrt.c:207 +#: schedutils/chrt.c:228 msgid "current" msgstr "sekarang" -#: schedutils/chrt.c:215 +#: schedutils/chrt.c:236 msgid "failed to parse priority" msgstr "gagal mendapatkan prioritas" -#: schedutils/chrt.c:221 +#: schedutils/chrt.c:242 #, c-format msgid "failed to set pid %d's policy" msgstr "gagal menset kebijakan pid %d" -#: schedutils/chrt.c:230 +#: schedutils/chrt.c:251 #, c-format msgid "failed to execute %s" msgstr "gagal menjalankan %s" @@ -10663,7 +10663,7 @@ msgstr "para" msgid "full" msgstr "penuh" -#: sys-utils/lscpu.c:129 sys-utils/lscpu.c:152 sys-utils/lscpu.c:431 +#: sys-utils/lscpu.c:129 sys-utils/lscpu.c:152 sys-utils/lscpu.c:441 #, c-format msgid "error: %s" msgstr "error: %s" @@ -10681,15 +10681,15 @@ msgstr "error: strdup gagal" msgid "error: uname failed" msgstr "error: uname gagal" -#: sys-utils/lscpu.c:481 +#: sys-utils/lscpu.c:491 msgid "error: malloc failed" msgstr "error: malloc gagal" -#: sys-utils/lscpu.c:496 +#: sys-utils/lscpu.c:506 msgid "error: /sys filesystem is not accessable." msgstr "error: sistem berkas /sys tidak dapat diakses." -#: sys-utils/lscpu.c:514 +#: sys-utils/lscpu.c:524 #, c-format msgid "" "# The following is the parsable format, which can be fed to other\n" @@ -10702,65 +10702,65 @@ msgstr "" "# ID unik berawal dari nol.\n" "# CPU,Core,Soket,Node" -#: sys-utils/lscpu.c:580 +#: sys-utils/lscpu.c:590 msgid "Thread(s) per core:" msgstr "Thread(s) setiap inti:" -#: sys-utils/lscpu.c:581 +#: sys-utils/lscpu.c:591 msgid "Core(s) per socket:" msgstr "Inti setiap soket:" -#: sys-utils/lscpu.c:582 +#: sys-utils/lscpu.c:592 msgid "CPU socket(s):" msgstr "CPU soket:" -#: sys-utils/lscpu.c:586 +#: sys-utils/lscpu.c:596 msgid "NUMA node(s):" msgstr "Titik NUMA:" -#: sys-utils/lscpu.c:588 +#: sys-utils/lscpu.c:598 msgid "Vendor ID:" msgstr "ID Pembuat:" -#: sys-utils/lscpu.c:590 +#: sys-utils/lscpu.c:600 msgid "CPU family:" msgstr "Keluarga CPU:" -#: sys-utils/lscpu.c:592 +#: sys-utils/lscpu.c:602 msgid "Model:" msgstr "Model:" -#: sys-utils/lscpu.c:594 +#: sys-utils/lscpu.c:604 msgid "Stepping:" msgstr "Stepping:" -#: sys-utils/lscpu.c:596 +#: sys-utils/lscpu.c:606 msgid "CPU MHz:" msgstr "CPU MHz:" -#: sys-utils/lscpu.c:599 sys-utils/lscpu.c:601 +#: sys-utils/lscpu.c:609 sys-utils/lscpu.c:611 msgid "Virtualization:" msgstr "Virtualisasi:" -#: sys-utils/lscpu.c:604 +#: sys-utils/lscpu.c:614 msgid "Hypervisor vendor:" msgstr "Pembuat Hypervisor:" -#: sys-utils/lscpu.c:605 +#: sys-utils/lscpu.c:615 msgid "Virtualization type:" msgstr "Tipe virtualisasi:" -#: sys-utils/lscpu.c:613 +#: sys-utils/lscpu.c:623 #, c-format msgid "%s cache:" msgstr "%s persediaan:" -#: sys-utils/lscpu.c:621 +#: sys-utils/lscpu.c:631 #, c-format msgid "Usage: %s [option]\n" msgstr "Penggunaan: %s [pilihan]\n" -#: sys-utils/lscpu.c:624 +#: sys-utils/lscpu.c:634 msgid "" "CPU architecture information helper\n" "\n" @@ -10775,7 +10775,7 @@ msgstr "" "tercetak.\n" " -s, --sysroot gunakan direktori sebagai sistem root baru.\n" -#: sys-utils/lscpu.c:673 +#: sys-utils/lscpu.c:683 #, c-format msgid "error: change working directory to %s." msgstr "error: mengubah direktori kerja ke %s." @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: util-linux-ng 2.13.1-rc1\n" "Report-Msgid-Bugs-To: Karel Zak <kzak@redhat.com>\n" -"POT-Creation-Date: 2009-04-29 15:34+0200\n" +"POT-Creation-Date: 2009-05-27 21:39+0200\n" "PO-Revision-Date: 2008-04-18 13:44+0100\n" "Last-Translator: Marco Colombo <m.colombo@ed.ac.uk>\n" "Language-Team: Italian <tp@lists.linux.it>\n" @@ -7775,26 +7775,26 @@ msgstr "%s: impossibile fare stat del file temporaneo.\n" msgid "%s: can't read temporary file.\n" msgstr "%s: impossibile leggere il file temporaneo.\n" -#: misc-utils/cal.c:355 misc-utils/cal.c:367 +#: misc-utils/cal.c:358 misc-utils/cal.c:370 #, fuzzy, c-format msgid "illegal day value: use 1-%d" msgstr "valore dell'anno non valido: usare 1-9999" -#: misc-utils/cal.c:359 +#: misc-utils/cal.c:362 msgid "illegal month value: use 1-12" msgstr "valore del mese non valido: usare 1-12" -#: misc-utils/cal.c:363 +#: misc-utils/cal.c:366 msgid "illegal year value: use 1-9999" msgstr "valore dell'anno non valido: usare 1-9999" # FIXME -#: misc-utils/cal.c:457 +#: misc-utils/cal.c:460 #, c-format msgid "%s %d" msgstr "%s %d" -#: misc-utils/cal.c:848 +#: misc-utils/cal.c:851 #, fuzzy, c-format msgid "usage: cal [-13smjyV] [[[day] month] year]\n" msgstr "Uso: cal [-13smjyV] [[mese] anno]\n" @@ -9427,52 +9427,52 @@ msgstr "Scrittura della partizione su %s non riuscita\n" msgid "pid %d's %s scheduling policy: " msgstr "" -#: schedutils/chrt.c:108 +#: schedutils/chrt.c:112 #, fuzzy, c-format msgid "unknown\n" msgstr "sconosciuto" -#: schedutils/chrt.c:112 +#: schedutils/chrt.c:116 #, c-format msgid "failed to get pid %d's attributes" msgstr "" -#: schedutils/chrt.c:114 +#: schedutils/chrt.c:118 #, c-format msgid "pid %d's %s scheduling priority: %d\n" msgstr "" -#: schedutils/chrt.c:130 +#: schedutils/chrt.c:147 #, c-format msgid "SCHED_%s min/max priority\t: %d/%d\n" msgstr "" -#: schedutils/chrt.c:133 +#: schedutils/chrt.c:150 #, fuzzy, c-format msgid "SCHED_%s not supported?\n" msgstr "NFS attraverso TCP non supportato.\n" -#: schedutils/chrt.c:185 +#: schedutils/chrt.c:206 #, fuzzy msgid "failed to parse pid" msgstr "%s: impossibile aprire: %s\n" -#: schedutils/chrt.c:207 +#: schedutils/chrt.c:228 #, fuzzy msgid "current" msgstr "ncount" -#: schedutils/chrt.c:215 +#: schedutils/chrt.c:236 #, fuzzy msgid "failed to parse priority" msgstr "Scrittura della partizione su %s non riuscita\n" -#: schedutils/chrt.c:221 +#: schedutils/chrt.c:242 #, fuzzy, c-format msgid "failed to set pid %d's policy" msgstr "Scrittura della partizione su %s non riuscita\n" -#: schedutils/chrt.c:230 +#: schedutils/chrt.c:251 #, fuzzy, c-format msgid "failed to execute %s" msgstr "ioctl() non è riuscito a leggere l'orario da %s" @@ -10483,7 +10483,7 @@ msgstr "" msgid "full" msgstr "" -#: sys-utils/lscpu.c:129 sys-utils/lscpu.c:152 sys-utils/lscpu.c:431 +#: sys-utils/lscpu.c:129 sys-utils/lscpu.c:152 sys-utils/lscpu.c:441 #, fuzzy, c-format msgid "error: %s" msgstr "fork: %s" @@ -10505,16 +10505,16 @@ msgstr "" "\n" "Errore durante la chiusura del file\n" -#: sys-utils/lscpu.c:481 +#: sys-utils/lscpu.c:491 #, fuzzy msgid "error: malloc failed" msgstr "malloc non riuscita" -#: sys-utils/lscpu.c:496 +#: sys-utils/lscpu.c:506 msgid "error: /sys filesystem is not accessable." msgstr "" -#: sys-utils/lscpu.c:514 +#: sys-utils/lscpu.c:524 #, c-format msgid "" "# The following is the parsable format, which can be fed to other\n" @@ -10523,66 +10523,66 @@ msgid "" "# CPU,Core,Socket,Node" msgstr "" -#: sys-utils/lscpu.c:580 +#: sys-utils/lscpu.c:590 msgid "Thread(s) per core:" msgstr "" -#: sys-utils/lscpu.c:581 +#: sys-utils/lscpu.c:591 msgid "Core(s) per socket:" msgstr "" -#: sys-utils/lscpu.c:582 +#: sys-utils/lscpu.c:592 msgid "CPU socket(s):" msgstr "" -#: sys-utils/lscpu.c:586 +#: sys-utils/lscpu.c:596 msgid "NUMA node(s):" msgstr "" -#: sys-utils/lscpu.c:588 +#: sys-utils/lscpu.c:598 msgid "Vendor ID:" msgstr "" -#: sys-utils/lscpu.c:590 +#: sys-utils/lscpu.c:600 msgid "CPU family:" msgstr "" -#: sys-utils/lscpu.c:592 +#: sys-utils/lscpu.c:602 msgid "Model:" msgstr "" -#: sys-utils/lscpu.c:594 +#: sys-utils/lscpu.c:604 msgid "Stepping:" msgstr "" -#: sys-utils/lscpu.c:596 +#: sys-utils/lscpu.c:606 msgid "CPU MHz:" msgstr "" -#: sys-utils/lscpu.c:599 sys-utils/lscpu.c:601 +#: sys-utils/lscpu.c:609 sys-utils/lscpu.c:611 #, fuzzy msgid "Virtualization:" msgstr "Vecchia situazione:\n" -#: sys-utils/lscpu.c:604 +#: sys-utils/lscpu.c:614 msgid "Hypervisor vendor:" msgstr "" -#: sys-utils/lscpu.c:605 +#: sys-utils/lscpu.c:615 msgid "Virtualization type:" msgstr "" -#: sys-utils/lscpu.c:613 +#: sys-utils/lscpu.c:623 #, c-format msgid "%s cache:" msgstr "" -#: sys-utils/lscpu.c:621 +#: sys-utils/lscpu.c:631 #, fuzzy, c-format msgid "Usage: %s [option]\n" msgstr "Uso: %s [opzioni] dispositivo...\n" -#: sys-utils/lscpu.c:624 +#: sys-utils/lscpu.c:634 msgid "" "CPU architecture information helper\n" "\n" @@ -10591,7 +10591,7 @@ msgid "" " -s, --sysroot use the directory as a new system root.\n" msgstr "" -#: sys-utils/lscpu.c:673 +#: sys-utils/lscpu.c:683 #, fuzzy, c-format msgid "error: change working directory to %s." msgstr "errore durante il cambiamento della modalità di %s: %s\n" @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: util-linux-ng 2.14.2-rc2\n" "Report-Msgid-Bugs-To: Karel Zak <kzak@redhat.com>\n" -"POT-Creation-Date: 2009-04-29 15:34+0200\n" +"POT-Creation-Date: 2009-05-27 21:39+0200\n" "PO-Revision-Date: 2009-01-28 16:54+0900\n" "Last-Translator: Makoto Kato <makoto.kt@gmail.com>\n" "Language-Team: Japanese <translation-team-ja@lists.sourceforge.net>\n" @@ -7693,25 +7693,25 @@ msgstr "%s: 一時ファイルã®æƒ…å ±ã‚’å–å¾—ã§ãã¾ã›ã‚“。\n" msgid "%s: can't read temporary file.\n" msgstr "%s: 一時ファイルをèªã‚ã¾ã›ã‚“。\n" -#: misc-utils/cal.c:355 misc-utils/cal.c:367 +#: misc-utils/cal.c:358 misc-utils/cal.c:370 #, c-format msgid "illegal day value: use 1-%d" msgstr "ä¸æ£ãªæ—¥: 1-%d を使ã£ã¦ãã ã•ã„" -#: misc-utils/cal.c:359 +#: misc-utils/cal.c:362 msgid "illegal month value: use 1-12" msgstr "ä¸æ£ãªæœˆ: 1-12 を使ã£ã¦ãã ã•ã„" -#: misc-utils/cal.c:363 +#: misc-utils/cal.c:366 msgid "illegal year value: use 1-9999" msgstr "ä¸æ£ãªå¹´: 1-9999 を使ã£ã¦ãã ã•ã„" -#: misc-utils/cal.c:457 +#: misc-utils/cal.c:460 #, c-format msgid "%s %d" msgstr "%s %d" -#: misc-utils/cal.c:848 +#: misc-utils/cal.c:851 #, c-format msgid "usage: cal [-13smjyV] [[[day] month] year]\n" msgstr "使ã„æ–¹: cal [-13smjyV] [[[æ—¥] 月] å¹´]\n" @@ -9408,51 +9408,51 @@ msgstr "%s ã®ãƒ‘ーティション書ãè¾¼ã¿ã«å¤±æ•—\n" msgid "pid %d's %s scheduling policy: " msgstr "" -#: schedutils/chrt.c:108 +#: schedutils/chrt.c:112 #, fuzzy, c-format msgid "unknown\n" msgstr "ä¸æ˜Žãª" -#: schedutils/chrt.c:112 +#: schedutils/chrt.c:116 #, c-format msgid "failed to get pid %d's attributes" msgstr "" -#: schedutils/chrt.c:114 +#: schedutils/chrt.c:118 #, c-format msgid "pid %d's %s scheduling priority: %d\n" msgstr "" -#: schedutils/chrt.c:130 +#: schedutils/chrt.c:147 #, c-format msgid "SCHED_%s min/max priority\t: %d/%d\n" msgstr "" -#: schedutils/chrt.c:133 +#: schedutils/chrt.c:150 #, fuzzy, c-format msgid "SCHED_%s not supported?\n" msgstr "TCP 経由㮠NFS ã¯ã‚µãƒãƒ¼ãƒˆã•ã‚Œã¦ã„ã¾ã›ã‚“。\n" -#: schedutils/chrt.c:185 +#: schedutils/chrt.c:206 #, fuzzy msgid "failed to parse pid" msgstr "%s: open ã«å¤±æ•—: %s\n" -#: schedutils/chrt.c:207 +#: schedutils/chrt.c:228 msgid "current" msgstr "ç¾åœ¨" -#: schedutils/chrt.c:215 +#: schedutils/chrt.c:236 #, fuzzy msgid "failed to parse priority" msgstr "%s ã®ãƒ‘ーティション書ãè¾¼ã¿ã«å¤±æ•—\n" -#: schedutils/chrt.c:221 +#: schedutils/chrt.c:242 #, fuzzy, c-format msgid "failed to set pid %d's policy" msgstr "%s ã®ãƒ‘ーティション書ãè¾¼ã¿ã«å¤±æ•—\n" -#: schedutils/chrt.c:230 +#: schedutils/chrt.c:251 #, fuzzy, c-format msgid "failed to execute %s" msgstr "typescript ファイル %s ã®èªã¿è¾¼ã¿ãŒå¤±æ•—ã—ã¾ã—ãŸ" @@ -10461,7 +10461,7 @@ msgstr "" msgid "full" msgstr "" -#: sys-utils/lscpu.c:129 sys-utils/lscpu.c:152 sys-utils/lscpu.c:431 +#: sys-utils/lscpu.c:129 sys-utils/lscpu.c:152 sys-utils/lscpu.c:441 #, fuzzy, c-format msgid "error: %s" msgstr "RE エラー" @@ -10481,16 +10481,16 @@ msgstr "標準出力ã¸ã®æ›¸ãè¾¼ã¿ãŒå¤±æ•—ã—ã¾ã—ãŸ" msgid "error: uname failed" msgstr "エラー: UUID ã®è§£æžã«å¤±æ•—" -#: sys-utils/lscpu.c:481 +#: sys-utils/lscpu.c:491 #, fuzzy msgid "error: malloc failed" msgstr "malloc ã«å¤±æ•—" -#: sys-utils/lscpu.c:496 +#: sys-utils/lscpu.c:506 msgid "error: /sys filesystem is not accessable." msgstr "" -#: sys-utils/lscpu.c:514 +#: sys-utils/lscpu.c:524 #, c-format msgid "" "# The following is the parsable format, which can be fed to other\n" @@ -10499,66 +10499,66 @@ msgid "" "# CPU,Core,Socket,Node" msgstr "" -#: sys-utils/lscpu.c:580 +#: sys-utils/lscpu.c:590 msgid "Thread(s) per core:" msgstr "" -#: sys-utils/lscpu.c:581 +#: sys-utils/lscpu.c:591 msgid "Core(s) per socket:" msgstr "" -#: sys-utils/lscpu.c:582 +#: sys-utils/lscpu.c:592 msgid "CPU socket(s):" msgstr "" -#: sys-utils/lscpu.c:586 +#: sys-utils/lscpu.c:596 msgid "NUMA node(s):" msgstr "" -#: sys-utils/lscpu.c:588 +#: sys-utils/lscpu.c:598 msgid "Vendor ID:" msgstr "" -#: sys-utils/lscpu.c:590 +#: sys-utils/lscpu.c:600 msgid "CPU family:" msgstr "" -#: sys-utils/lscpu.c:592 +#: sys-utils/lscpu.c:602 msgid "Model:" msgstr "" -#: sys-utils/lscpu.c:594 +#: sys-utils/lscpu.c:604 msgid "Stepping:" msgstr "" -#: sys-utils/lscpu.c:596 +#: sys-utils/lscpu.c:606 msgid "CPU MHz:" msgstr "" -#: sys-utils/lscpu.c:599 sys-utils/lscpu.c:601 +#: sys-utils/lscpu.c:609 sys-utils/lscpu.c:611 #, fuzzy msgid "Virtualization:" msgstr "å¤ã„å ´é¢:\n" -#: sys-utils/lscpu.c:604 +#: sys-utils/lscpu.c:614 msgid "Hypervisor vendor:" msgstr "" -#: sys-utils/lscpu.c:605 +#: sys-utils/lscpu.c:615 msgid "Virtualization type:" msgstr "" -#: sys-utils/lscpu.c:613 +#: sys-utils/lscpu.c:623 #, c-format msgid "%s cache:" msgstr "" -#: sys-utils/lscpu.c:621 +#: sys-utils/lscpu.c:631 #, fuzzy, c-format msgid "Usage: %s [option]\n" msgstr "使ã„æ–¹: %s [オプション] デãƒã‚¤ã‚¹å...\n" -#: sys-utils/lscpu.c:624 +#: sys-utils/lscpu.c:634 msgid "" "CPU architecture information helper\n" "\n" @@ -10567,7 +10567,7 @@ msgid "" " -s, --sysroot use the directory as a new system root.\n" msgstr "" -#: sys-utils/lscpu.c:673 +#: sys-utils/lscpu.c:683 #, fuzzy, c-format msgid "error: change working directory to %s." msgstr "%s ã®ãƒ¢ãƒ¼ãƒ‰å¤‰æ›´ã‚¨ãƒ©ãƒ¼: %s\n" @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: util-linux-ng-2.14.2-rc2\n" "Report-Msgid-Bugs-To: Karel Zak <kzak@redhat.com>\n" -"POT-Creation-Date: 2009-04-29 15:34+0200\n" +"POT-Creation-Date: 2009-05-27 21:39+0200\n" "PO-Revision-Date: 2009-01-31 20:52+0100\n" "Last-Translator: Benno Schulenberg <benno@vertaalt.nl>\n" "Language-Team: Dutch <vertaling@vrijschrift.org>\n" @@ -7790,25 +7790,25 @@ msgstr "%s: kan tijdelijk bestand niet vinden\n" msgid "%s: can't read temporary file.\n" msgstr "%s: kan tijdelijk bestand niet lezen\n" -#: misc-utils/cal.c:355 misc-utils/cal.c:367 +#: misc-utils/cal.c:358 misc-utils/cal.c:370 #, c-format msgid "illegal day value: use 1-%d" msgstr "onjuiste dagwaarde; gebruik 1-%d" -#: misc-utils/cal.c:359 +#: misc-utils/cal.c:362 msgid "illegal month value: use 1-12" msgstr "onjuiste maandwaarde; gebruik 1-12" -#: misc-utils/cal.c:363 +#: misc-utils/cal.c:366 msgid "illegal year value: use 1-9999" msgstr "onjuiste jaarwaarde; gebruik 1-9999" -#: misc-utils/cal.c:457 +#: misc-utils/cal.c:460 #, c-format msgid "%s %d" msgstr "%s %d" -#: misc-utils/cal.c:848 +#: misc-utils/cal.c:851 #, c-format msgid "usage: cal [-13smjyV] [[[day] month] year]\n" msgstr "Gebruik: cal [-13smjyV] [[[dag] maand] jaar]\n" @@ -9551,52 +9551,52 @@ msgstr "Instellen van systeemeigenschappen voor %s is mislukt" msgid "pid %d's %s scheduling policy: " msgstr "" -#: schedutils/chrt.c:108 +#: schedutils/chrt.c:112 #, fuzzy, c-format msgid "unknown\n" msgstr "onbekende tijd" -#: schedutils/chrt.c:112 +#: schedutils/chrt.c:116 #, c-format msgid "failed to get pid %d's attributes" msgstr "" -#: schedutils/chrt.c:114 +#: schedutils/chrt.c:118 #, c-format msgid "pid %d's %s scheduling priority: %d\n" msgstr "" -#: schedutils/chrt.c:130 +#: schedutils/chrt.c:147 #, c-format msgid "SCHED_%s min/max priority\t: %d/%d\n" msgstr "" -#: schedutils/chrt.c:133 +#: schedutils/chrt.c:150 #, c-format msgid "SCHED_%s not supported?\n" msgstr "" -#: schedutils/chrt.c:185 +#: schedutils/chrt.c:206 #, fuzzy msgid "failed to parse pid" msgstr "%s: openen is mislukt: %s\n" -#: schedutils/chrt.c:207 +#: schedutils/chrt.c:228 #, fuzzy msgid "current" msgstr "ncount" -#: schedutils/chrt.c:215 +#: schedutils/chrt.c:236 #, fuzzy msgid "failed to parse priority" msgstr "Instellen van systeemeigenschappen voor %s is mislukt" -#: schedutils/chrt.c:221 +#: schedutils/chrt.c:242 #, fuzzy, c-format msgid "failed to set pid %d's policy" msgstr "Instellen van systeemeigenschappen voor %s is mislukt" -#: schedutils/chrt.c:230 +#: schedutils/chrt.c:251 #, fuzzy, c-format msgid "failed to execute %s" msgstr "kan scriptbestand %s niet lezen" @@ -10613,7 +10613,7 @@ msgstr "" msgid "full" msgstr "" -#: sys-utils/lscpu.c:129 sys-utils/lscpu.c:152 sys-utils/lscpu.c:431 +#: sys-utils/lscpu.c:129 sys-utils/lscpu.c:152 sys-utils/lscpu.c:441 #, fuzzy, c-format msgid "error: %s" msgstr "Fout in reguliere expressie: " @@ -10633,16 +10633,16 @@ msgstr "schrijven naar standaarduitvoer is mislukt" msgid "error: uname failed" msgstr "fout: kan UUID niet ontleden" -#: sys-utils/lscpu.c:481 +#: sys-utils/lscpu.c:491 #, fuzzy msgid "error: malloc failed" msgstr "malloc() is mislukt" -#: sys-utils/lscpu.c:496 +#: sys-utils/lscpu.c:506 msgid "error: /sys filesystem is not accessable." msgstr "" -#: sys-utils/lscpu.c:514 +#: sys-utils/lscpu.c:524 #, c-format msgid "" "# The following is the parsable format, which can be fed to other\n" @@ -10651,66 +10651,66 @@ msgid "" "# CPU,Core,Socket,Node" msgstr "" -#: sys-utils/lscpu.c:580 +#: sys-utils/lscpu.c:590 msgid "Thread(s) per core:" msgstr "" -#: sys-utils/lscpu.c:581 +#: sys-utils/lscpu.c:591 msgid "Core(s) per socket:" msgstr "" -#: sys-utils/lscpu.c:582 +#: sys-utils/lscpu.c:592 msgid "CPU socket(s):" msgstr "" -#: sys-utils/lscpu.c:586 +#: sys-utils/lscpu.c:596 msgid "NUMA node(s):" msgstr "" -#: sys-utils/lscpu.c:588 +#: sys-utils/lscpu.c:598 msgid "Vendor ID:" msgstr "" -#: sys-utils/lscpu.c:590 +#: sys-utils/lscpu.c:600 msgid "CPU family:" msgstr "" -#: sys-utils/lscpu.c:592 +#: sys-utils/lscpu.c:602 msgid "Model:" msgstr "" -#: sys-utils/lscpu.c:594 +#: sys-utils/lscpu.c:604 msgid "Stepping:" msgstr "" -#: sys-utils/lscpu.c:596 +#: sys-utils/lscpu.c:606 msgid "CPU MHz:" msgstr "" -#: sys-utils/lscpu.c:599 sys-utils/lscpu.c:601 +#: sys-utils/lscpu.c:609 sys-utils/lscpu.c:611 #, fuzzy msgid "Virtualization:" msgstr "Oude situatie:\n" -#: sys-utils/lscpu.c:604 +#: sys-utils/lscpu.c:614 msgid "Hypervisor vendor:" msgstr "" -#: sys-utils/lscpu.c:605 +#: sys-utils/lscpu.c:615 msgid "Virtualization type:" msgstr "" -#: sys-utils/lscpu.c:613 +#: sys-utils/lscpu.c:623 #, c-format msgid "%s cache:" msgstr "" -#: sys-utils/lscpu.c:621 +#: sys-utils/lscpu.c:631 #, fuzzy, c-format msgid "Usage: %s [option]\n" msgstr "Gebruik: %s [opties] apparaat ...\n" -#: sys-utils/lscpu.c:624 +#: sys-utils/lscpu.c:634 msgid "" "CPU architecture information helper\n" "\n" @@ -10719,7 +10719,7 @@ msgid "" " -s, --sysroot use the directory as a new system root.\n" msgstr "" -#: sys-utils/lscpu.c:673 +#: sys-utils/lscpu.c:683 #, fuzzy, c-format msgid "error: change working directory to %s." msgstr "fout bij wijzigen van modus van %s: %s\n" @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: util-linux 2.13-pre7\n" "Report-Msgid-Bugs-To: Karel Zak <kzak@redhat.com>\n" -"POT-Creation-Date: 2009-04-29 15:34+0200\n" +"POT-Creation-Date: 2009-05-27 21:39+0200\n" "PO-Revision-Date: 2006-12-22 00:25+0100\n" "Last-Translator: Andrzej Krzysztofowicz <ankry@mif.pg.gda.pl>\n" "Language-Team: Polish <translation-team-pl@lists.sourceforge.net>\n" @@ -7207,25 +7207,25 @@ msgstr "" msgid "%s: can't read temporary file.\n" msgstr "" -#: misc-utils/cal.c:355 misc-utils/cal.c:367 +#: misc-utils/cal.c:358 misc-utils/cal.c:370 #, c-format msgid "illegal day value: use 1-%d" msgstr "" -#: misc-utils/cal.c:359 +#: misc-utils/cal.c:362 msgid "illegal month value: use 1-12" msgstr "" -#: misc-utils/cal.c:363 +#: misc-utils/cal.c:366 msgid "illegal year value: use 1-9999" msgstr "" -#: misc-utils/cal.c:457 +#: misc-utils/cal.c:460 #, c-format msgid "%s %d" msgstr "" -#: misc-utils/cal.c:848 +#: misc-utils/cal.c:851 #, c-format msgid "usage: cal [-13smjyV] [[[day] month] year]\n" msgstr "" @@ -8816,50 +8816,50 @@ msgstr "" msgid "pid %d's %s scheduling policy: " msgstr "" -#: schedutils/chrt.c:108 +#: schedutils/chrt.c:112 #, c-format msgid "unknown\n" msgstr "" -#: schedutils/chrt.c:112 +#: schedutils/chrt.c:116 #, c-format msgid "failed to get pid %d's attributes" msgstr "" -#: schedutils/chrt.c:114 +#: schedutils/chrt.c:118 #, c-format msgid "pid %d's %s scheduling priority: %d\n" msgstr "" -#: schedutils/chrt.c:130 +#: schedutils/chrt.c:147 #, c-format msgid "SCHED_%s min/max priority\t: %d/%d\n" msgstr "" -#: schedutils/chrt.c:133 +#: schedutils/chrt.c:150 #, c-format msgid "SCHED_%s not supported?\n" msgstr "" -#: schedutils/chrt.c:185 +#: schedutils/chrt.c:206 #, fuzzy msgid "failed to parse pid" msgstr "%s: nie uda³o siê otworzyæ: %s\n" -#: schedutils/chrt.c:207 +#: schedutils/chrt.c:228 msgid "current" msgstr "" -#: schedutils/chrt.c:215 +#: schedutils/chrt.c:236 msgid "failed to parse priority" msgstr "" -#: schedutils/chrt.c:221 +#: schedutils/chrt.c:242 #, c-format msgid "failed to set pid %d's policy" msgstr "" -#: schedutils/chrt.c:230 +#: schedutils/chrt.c:251 #, fuzzy, c-format msgid "failed to execute %s" msgstr "Nie mo¿na odczytaæ i-wêz³ów" @@ -9823,7 +9823,7 @@ msgstr "" msgid "full" msgstr "" -#: sys-utils/lscpu.c:129 sys-utils/lscpu.c:152 sys-utils/lscpu.c:431 +#: sys-utils/lscpu.c:129 sys-utils/lscpu.c:152 sys-utils/lscpu.c:441 #, fuzzy, c-format msgid "error: %s" msgstr "b³±d zamykania %s" @@ -9841,15 +9841,15 @@ msgstr "" msgid "error: uname failed" msgstr "" -#: sys-utils/lscpu.c:481 +#: sys-utils/lscpu.c:491 msgid "error: malloc failed" msgstr "" -#: sys-utils/lscpu.c:496 +#: sys-utils/lscpu.c:506 msgid "error: /sys filesystem is not accessable." msgstr "" -#: sys-utils/lscpu.c:514 +#: sys-utils/lscpu.c:524 #, c-format msgid "" "# The following is the parsable format, which can be fed to other\n" @@ -9858,65 +9858,65 @@ msgid "" "# CPU,Core,Socket,Node" msgstr "" -#: sys-utils/lscpu.c:580 +#: sys-utils/lscpu.c:590 msgid "Thread(s) per core:" msgstr "" -#: sys-utils/lscpu.c:581 +#: sys-utils/lscpu.c:591 msgid "Core(s) per socket:" msgstr "" -#: sys-utils/lscpu.c:582 +#: sys-utils/lscpu.c:592 msgid "CPU socket(s):" msgstr "" -#: sys-utils/lscpu.c:586 +#: sys-utils/lscpu.c:596 msgid "NUMA node(s):" msgstr "" -#: sys-utils/lscpu.c:588 +#: sys-utils/lscpu.c:598 msgid "Vendor ID:" msgstr "" -#: sys-utils/lscpu.c:590 +#: sys-utils/lscpu.c:600 msgid "CPU family:" msgstr "" -#: sys-utils/lscpu.c:592 +#: sys-utils/lscpu.c:602 msgid "Model:" msgstr "" -#: sys-utils/lscpu.c:594 +#: sys-utils/lscpu.c:604 msgid "Stepping:" msgstr "" -#: sys-utils/lscpu.c:596 +#: sys-utils/lscpu.c:606 msgid "CPU MHz:" msgstr "" -#: sys-utils/lscpu.c:599 sys-utils/lscpu.c:601 +#: sys-utils/lscpu.c:609 sys-utils/lscpu.c:611 msgid "Virtualization:" msgstr "" -#: sys-utils/lscpu.c:604 +#: sys-utils/lscpu.c:614 msgid "Hypervisor vendor:" msgstr "" -#: sys-utils/lscpu.c:605 +#: sys-utils/lscpu.c:615 msgid "Virtualization type:" msgstr "" -#: sys-utils/lscpu.c:613 +#: sys-utils/lscpu.c:623 #, c-format msgid "%s cache:" msgstr "" -#: sys-utils/lscpu.c:621 +#: sys-utils/lscpu.c:631 #, fuzzy, c-format msgid "Usage: %s [option]\n" msgstr "u¿ycie: %s [ -n ] urz±dzenie\n" -#: sys-utils/lscpu.c:624 +#: sys-utils/lscpu.c:634 msgid "" "CPU architecture information helper\n" "\n" @@ -9925,7 +9925,7 @@ msgid "" " -s, --sysroot use the directory as a new system root.\n" msgstr "" -#: sys-utils/lscpu.c:673 +#: sys-utils/lscpu.c:683 #, c-format msgid "error: change working directory to %s." msgstr "" diff --git a/po/pt_BR.po b/po/pt_BR.po index b87f6534..2432fe85 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: util-linux 2.11b\n" "Report-Msgid-Bugs-To: Karel Zak <kzak@redhat.com>\n" -"POT-Creation-Date: 2009-04-29 15:34+0200\n" +"POT-Creation-Date: 2009-05-27 21:39+0200\n" "PO-Revision-Date: 2001-05-24 16:03-03:00\n" "Last-Translator: Rodrigo Stulzer Lopes <rodrigo@conectiva.com.br>\n" "Language-Team: Brazilian Portuguese <ldp-br@bazar.conectiva.com.br>\n" @@ -7785,25 +7785,25 @@ msgstr "%s: não foi possível stat arquivo temporário.\n" msgid "%s: can't read temporary file.\n" msgstr "%s: não foi possível ler arquivo temporário.\n" -#: misc-utils/cal.c:355 misc-utils/cal.c:367 +#: misc-utils/cal.c:358 misc-utils/cal.c:370 #, fuzzy, c-format msgid "illegal day value: use 1-%d" msgstr "valor de ano inválido: use 1-9999" -#: misc-utils/cal.c:359 +#: misc-utils/cal.c:362 msgid "illegal month value: use 1-12" msgstr "valor de mês inválido: use 1-12" -#: misc-utils/cal.c:363 +#: misc-utils/cal.c:366 msgid "illegal year value: use 1-9999" msgstr "valor de ano inválido: use 1-9999" -#: misc-utils/cal.c:457 +#: misc-utils/cal.c:460 #, c-format msgid "%s %d" msgstr "" -#: misc-utils/cal.c:848 +#: misc-utils/cal.c:851 #, fuzzy, c-format msgid "usage: cal [-13smjyV] [[[day] month] year]\n" msgstr "Uso: cal [-mjyV] [[mês] ano]\n" @@ -9471,51 +9471,51 @@ msgstr "Não foi possível gravar a partição em %s\n" msgid "pid %d's %s scheduling policy: " msgstr "" -#: schedutils/chrt.c:108 +#: schedutils/chrt.c:112 #, fuzzy, c-format msgid "unknown\n" msgstr "desconhecida" -#: schedutils/chrt.c:112 +#: schedutils/chrt.c:116 #, c-format msgid "failed to get pid %d's attributes" msgstr "" -#: schedutils/chrt.c:114 +#: schedutils/chrt.c:118 #, c-format msgid "pid %d's %s scheduling priority: %d\n" msgstr "" -#: schedutils/chrt.c:130 +#: schedutils/chrt.c:147 #, c-format msgid "SCHED_%s min/max priority\t: %d/%d\n" msgstr "" -#: schedutils/chrt.c:133 +#: schedutils/chrt.c:150 #, fuzzy, c-format msgid "SCHED_%s not supported?\n" msgstr "NFS sobre TCP não é suportado.\n" -#: schedutils/chrt.c:185 +#: schedutils/chrt.c:206 #, fuzzy msgid "failed to parse pid" msgstr "%s: não foi possível abrir %s\n" -#: schedutils/chrt.c:207 +#: schedutils/chrt.c:228 msgid "current" msgstr "atual" -#: schedutils/chrt.c:215 +#: schedutils/chrt.c:236 #, fuzzy msgid "failed to parse priority" msgstr "Não foi possível gravar a partição em %s\n" -#: schedutils/chrt.c:221 +#: schedutils/chrt.c:242 #, fuzzy, c-format msgid "failed to set pid %d's policy" msgstr "Não foi possível gravar a partição em %s\n" -#: schedutils/chrt.c:230 +#: schedutils/chrt.c:251 #, fuzzy, c-format msgid "failed to execute %s" msgstr "ioctl() não conseguiu ler a hora de /dev/tty1" @@ -10528,7 +10528,7 @@ msgstr "" msgid "full" msgstr "" -#: sys-utils/lscpu.c:129 sys-utils/lscpu.c:152 sys-utils/lscpu.c:431 +#: sys-utils/lscpu.c:129 sys-utils/lscpu.c:152 sys-utils/lscpu.c:441 #, fuzzy, c-format msgid "error: %s" msgstr ", erro" @@ -10548,16 +10548,16 @@ msgstr "A abertura de %s falhou" msgid "error: uname failed" msgstr "Erro no fechamento de %s\n" -#: sys-utils/lscpu.c:481 +#: sys-utils/lscpu.c:491 #, fuzzy msgid "error: malloc failed" msgstr "malloc falhou" -#: sys-utils/lscpu.c:496 +#: sys-utils/lscpu.c:506 msgid "error: /sys filesystem is not accessable." msgstr "" -#: sys-utils/lscpu.c:514 +#: sys-utils/lscpu.c:524 #, c-format msgid "" "# The following is the parsable format, which can be fed to other\n" @@ -10566,66 +10566,66 @@ msgid "" "# CPU,Core,Socket,Node" msgstr "" -#: sys-utils/lscpu.c:580 +#: sys-utils/lscpu.c:590 msgid "Thread(s) per core:" msgstr "" -#: sys-utils/lscpu.c:581 +#: sys-utils/lscpu.c:591 msgid "Core(s) per socket:" msgstr "" -#: sys-utils/lscpu.c:582 +#: sys-utils/lscpu.c:592 msgid "CPU socket(s):" msgstr "" -#: sys-utils/lscpu.c:586 +#: sys-utils/lscpu.c:596 msgid "NUMA node(s):" msgstr "" -#: sys-utils/lscpu.c:588 +#: sys-utils/lscpu.c:598 msgid "Vendor ID:" msgstr "" -#: sys-utils/lscpu.c:590 +#: sys-utils/lscpu.c:600 msgid "CPU family:" msgstr "" -#: sys-utils/lscpu.c:592 +#: sys-utils/lscpu.c:602 msgid "Model:" msgstr "" -#: sys-utils/lscpu.c:594 +#: sys-utils/lscpu.c:604 msgid "Stepping:" msgstr "" -#: sys-utils/lscpu.c:596 +#: sys-utils/lscpu.c:606 msgid "CPU MHz:" msgstr "" -#: sys-utils/lscpu.c:599 sys-utils/lscpu.c:601 +#: sys-utils/lscpu.c:609 sys-utils/lscpu.c:611 #, fuzzy msgid "Virtualization:" msgstr "Situação antiga:\n" -#: sys-utils/lscpu.c:604 +#: sys-utils/lscpu.c:614 msgid "Hypervisor vendor:" msgstr "" -#: sys-utils/lscpu.c:605 +#: sys-utils/lscpu.c:615 msgid "Virtualization type:" msgstr "" -#: sys-utils/lscpu.c:613 +#: sys-utils/lscpu.c:623 #, c-format msgid "%s cache:" msgstr "" -#: sys-utils/lscpu.c:621 +#: sys-utils/lscpu.c:631 #, fuzzy, c-format msgid "Usage: %s [option]\n" msgstr "Uso: %s [opções] dispositivo ...\n" -#: sys-utils/lscpu.c:624 +#: sys-utils/lscpu.c:634 msgid "" "CPU architecture information helper\n" "\n" @@ -10634,7 +10634,7 @@ msgid "" " -s, --sysroot use the directory as a new system root.\n" msgstr "" -#: sys-utils/lscpu.c:673 +#: sys-utils/lscpu.c:683 #, fuzzy, c-format msgid "error: change working directory to %s." msgstr "erro ao alterar o modo de %s: %s\n" @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: util-linux 2.13-pre7\n" "Report-Msgid-Bugs-To: Karel Zak <kzak@redhat.com>\n" -"POT-Creation-Date: 2009-04-29 15:34+0200\n" +"POT-Creation-Date: 2009-05-27 21:39+0200\n" "PO-Revision-Date: 2006-03-07 12:42+0200\n" "Last-Translator: Pavel Maryanov <acid_jack@ukr.net>\n" "Language-Team: Russian <ru@li.org>\n" @@ -7809,25 +7809,25 @@ msgstr "%s: ÎÅ×ÏÚÍÏÖÎÏ ÏÐÒÅÄÅÌÉÔØ ÓÏÓÔÏÑÎÉÅ ×ÒÅÍÅÎÎÏÇÏ ÆÁÊÌÁ.\n" msgid "%s: can't read temporary file.\n" msgstr "%s: ÎÅ×ÏÚÍÏÖÎÏ ÐÒÏÞÉÔÁÔØ ×ÒÅÍÅÎÎÙÊ ÆÁÊÌ.\n" -#: misc-utils/cal.c:355 misc-utils/cal.c:367 +#: misc-utils/cal.c:358 misc-utils/cal.c:370 #, fuzzy, c-format msgid "illegal day value: use 1-%d" msgstr "ÚÁÐÒÅÝÅÎÎÏÅ ÚÎÁÞÅÎÉÅ ÇÏÄÁ: ÉÓÐÏÌØÚÕÊÔÅ 1-9999" -#: misc-utils/cal.c:359 +#: misc-utils/cal.c:362 msgid "illegal month value: use 1-12" msgstr "ÚÁÐÒÅÝÅÎÎÏÅ ÚÎÁÞÅÎÉÅ ÍÅÓÑÃÁ: ÉÓÐÏÌØÚÕÊÔÅ 1-12" -#: misc-utils/cal.c:363 +#: misc-utils/cal.c:366 msgid "illegal year value: use 1-9999" msgstr "ÚÁÐÒÅÝÅÎÎÏÅ ÚÎÁÞÅÎÉÅ ÇÏÄÁ: ÉÓÐÏÌØÚÕÊÔÅ 1-9999" -#: misc-utils/cal.c:457 +#: misc-utils/cal.c:460 #, c-format msgid "%s %d" msgstr "%s %d" -#: misc-utils/cal.c:848 +#: misc-utils/cal.c:851 #, fuzzy, c-format msgid "usage: cal [-13smjyV] [[[day] month] year]\n" msgstr "ÉÓÐÏÌØÚÏ×ÁÎÉÅ: cal [-13smjyV] [[ÍÅÓÑÃ] ÇÏÄ]\n" @@ -9505,52 +9505,52 @@ msgstr "ïÛÉÂËÁ ÚÁÐÉÓÉ ÒÁÚÄÅÌÁ ÎÁ %s\n" msgid "pid %d's %s scheduling policy: " msgstr "" -#: schedutils/chrt.c:108 +#: schedutils/chrt.c:112 #, fuzzy, c-format msgid "unknown\n" msgstr "ÎÅÉÚ×ÅÓÔÎÙÊ" -#: schedutils/chrt.c:112 +#: schedutils/chrt.c:116 #, c-format msgid "failed to get pid %d's attributes" msgstr "" -#: schedutils/chrt.c:114 +#: schedutils/chrt.c:118 #, c-format msgid "pid %d's %s scheduling priority: %d\n" msgstr "" -#: schedutils/chrt.c:130 +#: schedutils/chrt.c:147 #, c-format msgid "SCHED_%s min/max priority\t: %d/%d\n" msgstr "" -#: schedutils/chrt.c:133 +#: schedutils/chrt.c:150 #, fuzzy, c-format msgid "SCHED_%s not supported?\n" msgstr "NFS ÞÅÒÅÚ TCP ÎÅ ÐÏÄÄÅÒÖÉ×ÁÅÔÓÑ.\n" -#: schedutils/chrt.c:185 +#: schedutils/chrt.c:206 #, fuzzy msgid "failed to parse pid" msgstr "%s: ÎÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ : %s\n" -#: schedutils/chrt.c:207 +#: schedutils/chrt.c:228 #, fuzzy msgid "current" msgstr "ncount" -#: schedutils/chrt.c:215 +#: schedutils/chrt.c:236 #, fuzzy msgid "failed to parse priority" msgstr "ïÛÉÂËÁ ÚÁÐÉÓÉ ÒÁÚÄÅÌÁ ÎÁ %s\n" -#: schedutils/chrt.c:221 +#: schedutils/chrt.c:242 #, fuzzy, c-format msgid "failed to set pid %d's policy" msgstr "ïÛÉÂËÁ ÚÁÐÉÓÉ ÒÁÚÄÅÌÁ ÎÁ %s\n" -#: schedutils/chrt.c:230 +#: schedutils/chrt.c:251 #, fuzzy, c-format msgid "failed to execute %s" msgstr "ioctl() ÚÁ×ÅÒÛÉÌÓÑ ÎÅÕÄÁÞÅÊ ÐÒÉ ÞÔÅÎÉÉ ×ÒÅÍÅÎÉ ÉÚ %s" @@ -10562,7 +10562,7 @@ msgstr "" msgid "full" msgstr "" -#: sys-utils/lscpu.c:129 sys-utils/lscpu.c:152 sys-utils/lscpu.c:431 +#: sys-utils/lscpu.c:129 sys-utils/lscpu.c:152 sys-utils/lscpu.c:441 #, fuzzy, c-format msgid "error: %s" msgstr "ïÛÉÂËÁ RE: " @@ -10584,16 +10584,16 @@ msgstr "" "\n" "ïÛÉÂËÁ ÚÁËÒÙÔÉÑ ÆÁÊÌÁ\n" -#: sys-utils/lscpu.c:481 +#: sys-utils/lscpu.c:491 #, fuzzy msgid "error: malloc failed" msgstr "malloc ÚÁ×ÅÒÛÉÌÓÑ ÎÅÕÄÁÞÅÊ" -#: sys-utils/lscpu.c:496 +#: sys-utils/lscpu.c:506 msgid "error: /sys filesystem is not accessable." msgstr "" -#: sys-utils/lscpu.c:514 +#: sys-utils/lscpu.c:524 #, c-format msgid "" "# The following is the parsable format, which can be fed to other\n" @@ -10602,66 +10602,66 @@ msgid "" "# CPU,Core,Socket,Node" msgstr "" -#: sys-utils/lscpu.c:580 +#: sys-utils/lscpu.c:590 msgid "Thread(s) per core:" msgstr "" -#: sys-utils/lscpu.c:581 +#: sys-utils/lscpu.c:591 msgid "Core(s) per socket:" msgstr "" -#: sys-utils/lscpu.c:582 +#: sys-utils/lscpu.c:592 msgid "CPU socket(s):" msgstr "" -#: sys-utils/lscpu.c:586 +#: sys-utils/lscpu.c:596 msgid "NUMA node(s):" msgstr "" -#: sys-utils/lscpu.c:588 +#: sys-utils/lscpu.c:598 msgid "Vendor ID:" msgstr "" -#: sys-utils/lscpu.c:590 +#: sys-utils/lscpu.c:600 msgid "CPU family:" msgstr "" -#: sys-utils/lscpu.c:592 +#: sys-utils/lscpu.c:602 msgid "Model:" msgstr "" -#: sys-utils/lscpu.c:594 +#: sys-utils/lscpu.c:604 msgid "Stepping:" msgstr "" -#: sys-utils/lscpu.c:596 +#: sys-utils/lscpu.c:606 msgid "CPU MHz:" msgstr "" -#: sys-utils/lscpu.c:599 sys-utils/lscpu.c:601 +#: sys-utils/lscpu.c:609 sys-utils/lscpu.c:611 #, fuzzy msgid "Virtualization:" msgstr "óÔÁÒÁÑ ÓÉÔÕÁÃÉÑ:\n" -#: sys-utils/lscpu.c:604 +#: sys-utils/lscpu.c:614 msgid "Hypervisor vendor:" msgstr "" -#: sys-utils/lscpu.c:605 +#: sys-utils/lscpu.c:615 msgid "Virtualization type:" msgstr "" -#: sys-utils/lscpu.c:613 +#: sys-utils/lscpu.c:623 #, c-format msgid "%s cache:" msgstr "" -#: sys-utils/lscpu.c:621 +#: sys-utils/lscpu.c:631 #, fuzzy, c-format msgid "Usage: %s [option]\n" msgstr "éÓÐÏÌØÚÏ×ÁÎÉÅ: %s [ÏÐÃÉÉ] ÕÓÔÒÏÊÓÔ×Ï...\n" -#: sys-utils/lscpu.c:624 +#: sys-utils/lscpu.c:634 msgid "" "CPU architecture information helper\n" "\n" @@ -10670,7 +10670,7 @@ msgid "" " -s, --sysroot use the directory as a new system root.\n" msgstr "" -#: sys-utils/lscpu.c:673 +#: sys-utils/lscpu.c:683 #, fuzzy, c-format msgid "error: change working directory to %s." msgstr "ÏÛÉÂËÁ ÓÍÅÎÙ ÒÅÖÉÍÁ %s: %s\n" @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: util-linux 2.13-pre6\n" "Report-Msgid-Bugs-To: Karel Zak <kzak@redhat.com>\n" -"POT-Creation-Date: 2009-04-29 15:34+0200\n" +"POT-Creation-Date: 2009-05-27 21:39+0200\n" "PO-Revision-Date: 2006-03-05 12:29+0200\n" "Last-Translator: Simon Mihevc <simonmihevc@email.si>\n" "Language-Team: Slovenian <translation-team-sl@lists.sourceforge.net>\n" @@ -7747,25 +7747,25 @@ msgstr "%s ni mogoèe dobiti stanja zaèasne datoteke.\n" msgid "%s: can't read temporary file.\n" msgstr "%s: ni mogoèe brati iz zaèasne datoteke.\n" -#: misc-utils/cal.c:355 misc-utils/cal.c:367 +#: misc-utils/cal.c:358 misc-utils/cal.c:370 #, fuzzy, c-format msgid "illegal day value: use 1-%d" msgstr "neveljavna vrednost leta: uporabite 1-9999" -#: misc-utils/cal.c:359 +#: misc-utils/cal.c:362 msgid "illegal month value: use 1-12" msgstr "neveljavna vrednost meseca: uporabite 1-12" -#: misc-utils/cal.c:363 +#: misc-utils/cal.c:366 msgid "illegal year value: use 1-9999" msgstr "neveljavna vrednost leta: uporabite 1-9999" -#: misc-utils/cal.c:457 +#: misc-utils/cal.c:460 #, c-format msgid "%s %d" msgstr "%s %d" -#: misc-utils/cal.c:848 +#: misc-utils/cal.c:851 #, fuzzy, c-format msgid "usage: cal [-13smjyV] [[[day] month] year]\n" msgstr "uporaba: cal [-13smjyV] [[mesec] leto]\n" @@ -9434,52 +9434,52 @@ msgstr "Neuspe¹no zapisovanje razdelka na %s\n" msgid "pid %d's %s scheduling policy: " msgstr "" -#: schedutils/chrt.c:108 +#: schedutils/chrt.c:112 #, fuzzy, c-format msgid "unknown\n" msgstr "neznanem" -#: schedutils/chrt.c:112 +#: schedutils/chrt.c:116 #, c-format msgid "failed to get pid %d's attributes" msgstr "" -#: schedutils/chrt.c:114 +#: schedutils/chrt.c:118 #, c-format msgid "pid %d's %s scheduling priority: %d\n" msgstr "" -#: schedutils/chrt.c:130 +#: schedutils/chrt.c:147 #, c-format msgid "SCHED_%s min/max priority\t: %d/%d\n" msgstr "" -#: schedutils/chrt.c:133 +#: schedutils/chrt.c:150 #, fuzzy, c-format msgid "SCHED_%s not supported?\n" msgstr "NFS èez TCP ni podprt.\n" -#: schedutils/chrt.c:185 +#: schedutils/chrt.c:206 #, fuzzy msgid "failed to parse pid" msgstr "%s: odpiranje ni uspelo: %s\n" -#: schedutils/chrt.c:207 +#: schedutils/chrt.c:228 #, fuzzy msgid "current" msgstr "ncount" -#: schedutils/chrt.c:215 +#: schedutils/chrt.c:236 #, fuzzy msgid "failed to parse priority" msgstr "Neuspe¹no zapisovanje razdelka na %s\n" -#: schedutils/chrt.c:221 +#: schedutils/chrt.c:242 #, fuzzy, c-format msgid "failed to set pid %d's policy" msgstr "Neuspe¹no zapisovanje razdelka na %s\n" -#: schedutils/chrt.c:230 +#: schedutils/chrt.c:251 #, fuzzy, c-format msgid "failed to execute %s" msgstr "klic ioctl() ni uspel prebrati èasa iz %s" @@ -10485,7 +10485,7 @@ msgstr "" msgid "full" msgstr "" -#: sys-utils/lscpu.c:129 sys-utils/lscpu.c:152 sys-utils/lscpu.c:431 +#: sys-utils/lscpu.c:129 sys-utils/lscpu.c:152 sys-utils/lscpu.c:441 #, fuzzy, c-format msgid "error: %s" msgstr "napaka RE: " @@ -10507,16 +10507,16 @@ msgstr "" "\n" "Napaka pri zapiranju datoteke\n" -#: sys-utils/lscpu.c:481 +#: sys-utils/lscpu.c:491 #, fuzzy msgid "error: malloc failed" msgstr "malloc ni uspel" -#: sys-utils/lscpu.c:496 +#: sys-utils/lscpu.c:506 msgid "error: /sys filesystem is not accessable." msgstr "" -#: sys-utils/lscpu.c:514 +#: sys-utils/lscpu.c:524 #, c-format msgid "" "# The following is the parsable format, which can be fed to other\n" @@ -10525,66 +10525,66 @@ msgid "" "# CPU,Core,Socket,Node" msgstr "" -#: sys-utils/lscpu.c:580 +#: sys-utils/lscpu.c:590 msgid "Thread(s) per core:" msgstr "" -#: sys-utils/lscpu.c:581 +#: sys-utils/lscpu.c:591 msgid "Core(s) per socket:" msgstr "" -#: sys-utils/lscpu.c:582 +#: sys-utils/lscpu.c:592 msgid "CPU socket(s):" msgstr "" -#: sys-utils/lscpu.c:586 +#: sys-utils/lscpu.c:596 msgid "NUMA node(s):" msgstr "" -#: sys-utils/lscpu.c:588 +#: sys-utils/lscpu.c:598 msgid "Vendor ID:" msgstr "" -#: sys-utils/lscpu.c:590 +#: sys-utils/lscpu.c:600 msgid "CPU family:" msgstr "" -#: sys-utils/lscpu.c:592 +#: sys-utils/lscpu.c:602 msgid "Model:" msgstr "" -#: sys-utils/lscpu.c:594 +#: sys-utils/lscpu.c:604 msgid "Stepping:" msgstr "" -#: sys-utils/lscpu.c:596 +#: sys-utils/lscpu.c:606 msgid "CPU MHz:" msgstr "" -#: sys-utils/lscpu.c:599 sys-utils/lscpu.c:601 +#: sys-utils/lscpu.c:609 sys-utils/lscpu.c:611 #, fuzzy msgid "Virtualization:" msgstr "Staro stanje:\n" -#: sys-utils/lscpu.c:604 +#: sys-utils/lscpu.c:614 msgid "Hypervisor vendor:" msgstr "" -#: sys-utils/lscpu.c:605 +#: sys-utils/lscpu.c:615 msgid "Virtualization type:" msgstr "" -#: sys-utils/lscpu.c:613 +#: sys-utils/lscpu.c:623 #, c-format msgid "%s cache:" msgstr "" -#: sys-utils/lscpu.c:621 +#: sys-utils/lscpu.c:631 #, fuzzy, c-format msgid "Usage: %s [option]\n" msgstr "Uporaba: %s [izbire] naprava ...\n" -#: sys-utils/lscpu.c:624 +#: sys-utils/lscpu.c:634 msgid "" "CPU architecture information helper\n" "\n" @@ -10593,7 +10593,7 @@ msgid "" " -s, --sysroot use the directory as a new system root.\n" msgstr "" -#: sys-utils/lscpu.c:673 +#: sys-utils/lscpu.c:683 #, fuzzy, c-format msgid "error: change working directory to %s." msgstr "Napaka pri spreminjanju naèina %s: %s\n" @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: util-linux-ng 2.13.1-rc1\n" "Report-Msgid-Bugs-To: Karel Zak <kzak@redhat.com>\n" -"POT-Creation-Date: 2009-04-29 15:34+0200\n" +"POT-Creation-Date: 2009-05-27 21:39+0200\n" "PO-Revision-Date: 2007-11-14 09:20+0100\n" "Last-Translator: Daniel Nylander <po@danielnylander.se>\n" "Language-Team: Swedish <tp-sv@listor.tp-sv.se>\n" @@ -7808,25 +7808,25 @@ msgstr "%s: kan inte ta status pÃ¥ temporär fil.\n" msgid "%s: can't read temporary file.\n" msgstr "%s: kan inte läsa temporär fil.\n" -#: misc-utils/cal.c:355 misc-utils/cal.c:367 +#: misc-utils/cal.c:358 misc-utils/cal.c:370 #, fuzzy, c-format msgid "illegal day value: use 1-%d" msgstr "ogiltigt Ã¥rsvärde: använd 1-9999" -#: misc-utils/cal.c:359 +#: misc-utils/cal.c:362 msgid "illegal month value: use 1-12" msgstr "ogiltigt mÃ¥nadsvärde: använd 1-12" -#: misc-utils/cal.c:363 +#: misc-utils/cal.c:366 msgid "illegal year value: use 1-9999" msgstr "ogiltigt Ã¥rsvärde: använd 1-9999" -#: misc-utils/cal.c:457 +#: misc-utils/cal.c:460 #, c-format msgid "%s %d" msgstr "%s %d" -#: misc-utils/cal.c:848 +#: misc-utils/cal.c:851 #, fuzzy, c-format msgid "usage: cal [-13smjyV] [[[day] month] year]\n" msgstr "användning: cal [-13smjyV] [[mÃ¥nad] Ã¥r]\n" @@ -9514,52 +9514,52 @@ msgstr "Misslyckades med att ställa in personlighet till %s" msgid "pid %d's %s scheduling policy: " msgstr "" -#: schedutils/chrt.c:108 +#: schedutils/chrt.c:112 #, fuzzy, c-format msgid "unknown\n" msgstr "okänd" -#: schedutils/chrt.c:112 +#: schedutils/chrt.c:116 #, c-format msgid "failed to get pid %d's attributes" msgstr "" -#: schedutils/chrt.c:114 +#: schedutils/chrt.c:118 #, c-format msgid "pid %d's %s scheduling priority: %d\n" msgstr "" -#: schedutils/chrt.c:130 +#: schedutils/chrt.c:147 #, c-format msgid "SCHED_%s min/max priority\t: %d/%d\n" msgstr "" -#: schedutils/chrt.c:133 +#: schedutils/chrt.c:150 #, fuzzy, c-format msgid "SCHED_%s not supported?\n" msgstr "NFS över TCP stöds inte.\n" -#: schedutils/chrt.c:185 +#: schedutils/chrt.c:206 #, fuzzy msgid "failed to parse pid" msgstr "%s: misslyckades med att öppna: %s\n" -#: schedutils/chrt.c:207 +#: schedutils/chrt.c:228 #, fuzzy msgid "current" msgstr "nräkn" -#: schedutils/chrt.c:215 +#: schedutils/chrt.c:236 #, fuzzy msgid "failed to parse priority" msgstr "Misslyckades med att ställa in personlighet till %s" -#: schedutils/chrt.c:221 +#: schedutils/chrt.c:242 #, fuzzy, c-format msgid "failed to set pid %d's policy" msgstr "Misslyckades med att ställa in personlighet till %s" -#: schedutils/chrt.c:230 +#: schedutils/chrt.c:251 #, fuzzy, c-format msgid "failed to execute %s" msgstr "ioctl() misslyckades med att läsa tid frÃ¥n %s" @@ -10572,7 +10572,7 @@ msgstr "" msgid "full" msgstr "" -#: sys-utils/lscpu.c:129 sys-utils/lscpu.c:152 sys-utils/lscpu.c:431 +#: sys-utils/lscpu.c:129 sys-utils/lscpu.c:152 sys-utils/lscpu.c:441 #, fuzzy, c-format msgid "error: %s" msgstr "RE-fel: " @@ -10592,16 +10592,16 @@ msgstr "Öppning av %s misslyckades" msgid "error: uname failed" msgstr "Fel vid stängning av fil\n" -#: sys-utils/lscpu.c:481 +#: sys-utils/lscpu.c:491 #, fuzzy msgid "error: malloc failed" msgstr "minnesallokering misslyckades" -#: sys-utils/lscpu.c:496 +#: sys-utils/lscpu.c:506 msgid "error: /sys filesystem is not accessable." msgstr "" -#: sys-utils/lscpu.c:514 +#: sys-utils/lscpu.c:524 #, c-format msgid "" "# The following is the parsable format, which can be fed to other\n" @@ -10610,66 +10610,66 @@ msgid "" "# CPU,Core,Socket,Node" msgstr "" -#: sys-utils/lscpu.c:580 +#: sys-utils/lscpu.c:590 msgid "Thread(s) per core:" msgstr "" -#: sys-utils/lscpu.c:581 +#: sys-utils/lscpu.c:591 msgid "Core(s) per socket:" msgstr "" -#: sys-utils/lscpu.c:582 +#: sys-utils/lscpu.c:592 msgid "CPU socket(s):" msgstr "" -#: sys-utils/lscpu.c:586 +#: sys-utils/lscpu.c:596 msgid "NUMA node(s):" msgstr "" -#: sys-utils/lscpu.c:588 +#: sys-utils/lscpu.c:598 msgid "Vendor ID:" msgstr "" -#: sys-utils/lscpu.c:590 +#: sys-utils/lscpu.c:600 msgid "CPU family:" msgstr "" -#: sys-utils/lscpu.c:592 +#: sys-utils/lscpu.c:602 msgid "Model:" msgstr "" -#: sys-utils/lscpu.c:594 +#: sys-utils/lscpu.c:604 msgid "Stepping:" msgstr "" -#: sys-utils/lscpu.c:596 +#: sys-utils/lscpu.c:606 msgid "CPU MHz:" msgstr "" -#: sys-utils/lscpu.c:599 sys-utils/lscpu.c:601 +#: sys-utils/lscpu.c:609 sys-utils/lscpu.c:611 #, fuzzy msgid "Virtualization:" msgstr "Tidigare situation:\n" -#: sys-utils/lscpu.c:604 +#: sys-utils/lscpu.c:614 msgid "Hypervisor vendor:" msgstr "" -#: sys-utils/lscpu.c:605 +#: sys-utils/lscpu.c:615 msgid "Virtualization type:" msgstr "" -#: sys-utils/lscpu.c:613 +#: sys-utils/lscpu.c:623 #, c-format msgid "%s cache:" msgstr "" -#: sys-utils/lscpu.c:621 +#: sys-utils/lscpu.c:631 #, fuzzy, c-format msgid "Usage: %s [option]\n" msgstr "Användning: %s [flaggor] enhet ...\n" -#: sys-utils/lscpu.c:624 +#: sys-utils/lscpu.c:634 msgid "" "CPU architecture information helper\n" "\n" @@ -10678,7 +10678,7 @@ msgid "" " -s, --sysroot use the directory as a new system root.\n" msgstr "" -#: sys-utils/lscpu.c:673 +#: sys-utils/lscpu.c:683 #, fuzzy, c-format msgid "error: change working directory to %s." msgstr "fel vid byte av rättigheter pÃ¥ %s: %s\n" @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: util-linux 2.13-pre7\n" "Report-Msgid-Bugs-To: Karel Zak <kzak@redhat.com>\n" -"POT-Creation-Date: 2009-04-29 15:34+0200\n" +"POT-Creation-Date: 2009-05-27 21:39+0200\n" "PO-Revision-Date: 2006-03-06 15:45+0200\n" "Last-Translator: Nilgün Belma Bugüner <nilgun@buguner.name.tr>\n" "Language-Team: Turkish <gnu-tr-u12a@lists.sourceforge.net>\n" @@ -7785,25 +7785,25 @@ msgstr "%s: geçici dosya durum bilgileri alınamıyor.\n" msgid "%s: can't read temporary file.\n" msgstr "%s: geçici dosya okunamıyor.\n" -#: misc-utils/cal.c:355 misc-utils/cal.c:367 +#: misc-utils/cal.c:358 misc-utils/cal.c:370 #, fuzzy, c-format msgid "illegal day value: use 1-%d" msgstr "yıl deÄŸeri kuraldışı: 1-9999 arasında olmalı" -#: misc-utils/cal.c:359 +#: misc-utils/cal.c:362 msgid "illegal month value: use 1-12" msgstr "ay numarası kuraldışı: 1..12 arasında olmalı" -#: misc-utils/cal.c:363 +#: misc-utils/cal.c:366 msgid "illegal year value: use 1-9999" msgstr "yıl deÄŸeri kuraldışı: 1-9999 arasında olmalı" -#: misc-utils/cal.c:457 +#: misc-utils/cal.c:460 #, c-format msgid "%s %d" msgstr "%s %d" -#: misc-utils/cal.c:848 +#: misc-utils/cal.c:851 #, fuzzy, c-format msgid "usage: cal [-13smjyV] [[[day] month] year]\n" msgstr "kullanımı: cal [-13smjyV] [[ay] yıl]\n" @@ -9484,52 +9484,52 @@ msgstr "%s disk bölümüne yazarken hata oluÅŸtu\n" msgid "pid %d's %s scheduling policy: " msgstr "" -#: schedutils/chrt.c:108 +#: schedutils/chrt.c:112 #, fuzzy, c-format msgid "unknown\n" msgstr "bilinmeyen" -#: schedutils/chrt.c:112 +#: schedutils/chrt.c:116 #, c-format msgid "failed to get pid %d's attributes" msgstr "" -#: schedutils/chrt.c:114 +#: schedutils/chrt.c:118 #, c-format msgid "pid %d's %s scheduling priority: %d\n" msgstr "" -#: schedutils/chrt.c:130 +#: schedutils/chrt.c:147 #, c-format msgid "SCHED_%s min/max priority\t: %d/%d\n" msgstr "" -#: schedutils/chrt.c:133 +#: schedutils/chrt.c:150 #, fuzzy, c-format msgid "SCHED_%s not supported?\n" msgstr "TCP üzerinden NFS desteklenmiyor.\n" -#: schedutils/chrt.c:185 +#: schedutils/chrt.c:206 #, fuzzy msgid "failed to parse pid" msgstr "%s: açılamıyor: %s\n" -#: schedutils/chrt.c:207 +#: schedutils/chrt.c:228 #, fuzzy msgid "current" msgstr "nsayısı" -#: schedutils/chrt.c:215 +#: schedutils/chrt.c:236 #, fuzzy msgid "failed to parse priority" msgstr "%s disk bölümüne yazarken hata oluÅŸtu\n" -#: schedutils/chrt.c:221 +#: schedutils/chrt.c:242 #, fuzzy, c-format msgid "failed to set pid %d's policy" msgstr "%s disk bölümüne yazarken hata oluÅŸtu\n" -#: schedutils/chrt.c:230 +#: schedutils/chrt.c:251 #, fuzzy, c-format msgid "failed to execute %s" msgstr "ioctl() %s den zamanı okuyamadı" @@ -10541,7 +10541,7 @@ msgstr "" msgid "full" msgstr "" -#: sys-utils/lscpu.c:129 sys-utils/lscpu.c:152 sys-utils/lscpu.c:431 +#: sys-utils/lscpu.c:129 sys-utils/lscpu.c:152 sys-utils/lscpu.c:441 #, fuzzy, c-format msgid "error: %s" msgstr "RE hatası:" @@ -10563,16 +10563,16 @@ msgstr "" "\n" "Dosya kapatılırken hata\n" -#: sys-utils/lscpu.c:481 +#: sys-utils/lscpu.c:491 #, fuzzy msgid "error: malloc failed" msgstr "bellek ayrılamadı" -#: sys-utils/lscpu.c:496 +#: sys-utils/lscpu.c:506 msgid "error: /sys filesystem is not accessable." msgstr "" -#: sys-utils/lscpu.c:514 +#: sys-utils/lscpu.c:524 #, c-format msgid "" "# The following is the parsable format, which can be fed to other\n" @@ -10581,66 +10581,66 @@ msgid "" "# CPU,Core,Socket,Node" msgstr "" -#: sys-utils/lscpu.c:580 +#: sys-utils/lscpu.c:590 msgid "Thread(s) per core:" msgstr "" -#: sys-utils/lscpu.c:581 +#: sys-utils/lscpu.c:591 msgid "Core(s) per socket:" msgstr "" -#: sys-utils/lscpu.c:582 +#: sys-utils/lscpu.c:592 msgid "CPU socket(s):" msgstr "" -#: sys-utils/lscpu.c:586 +#: sys-utils/lscpu.c:596 msgid "NUMA node(s):" msgstr "" -#: sys-utils/lscpu.c:588 +#: sys-utils/lscpu.c:598 msgid "Vendor ID:" msgstr "" -#: sys-utils/lscpu.c:590 +#: sys-utils/lscpu.c:600 msgid "CPU family:" msgstr "" -#: sys-utils/lscpu.c:592 +#: sys-utils/lscpu.c:602 msgid "Model:" msgstr "" -#: sys-utils/lscpu.c:594 +#: sys-utils/lscpu.c:604 msgid "Stepping:" msgstr "" -#: sys-utils/lscpu.c:596 +#: sys-utils/lscpu.c:606 msgid "CPU MHz:" msgstr "" -#: sys-utils/lscpu.c:599 sys-utils/lscpu.c:601 +#: sys-utils/lscpu.c:609 sys-utils/lscpu.c:611 #, fuzzy msgid "Virtualization:" msgstr "Eski durum:\n" -#: sys-utils/lscpu.c:604 +#: sys-utils/lscpu.c:614 msgid "Hypervisor vendor:" msgstr "" -#: sys-utils/lscpu.c:605 +#: sys-utils/lscpu.c:615 msgid "Virtualization type:" msgstr "" -#: sys-utils/lscpu.c:613 +#: sys-utils/lscpu.c:623 #, c-format msgid "%s cache:" msgstr "" -#: sys-utils/lscpu.c:621 +#: sys-utils/lscpu.c:631 #, fuzzy, c-format msgid "Usage: %s [option]\n" msgstr "Kullanımı: %s [seçenekler] aygıt ...\n" -#: sys-utils/lscpu.c:624 +#: sys-utils/lscpu.c:634 msgid "" "CPU architecture information helper\n" "\n" @@ -10649,7 +10649,7 @@ msgid "" " -s, --sysroot use the directory as a new system root.\n" msgstr "" -#: sys-utils/lscpu.c:673 +#: sys-utils/lscpu.c:683 #, fuzzy, c-format msgid "error: change working directory to %s." msgstr "%s için kip deÄŸiÅŸtirilirken hata: %s\n" @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: util-linux 2.13-pre7\n" "Report-Msgid-Bugs-To: Karel Zak <kzak@redhat.com>\n" -"POT-Creation-Date: 2009-04-29 15:34+0200\n" +"POT-Creation-Date: 2009-05-27 21:39+0200\n" "PO-Revision-Date: 2006-04-06 10:45+0200\n" "Last-Translator: Maxim V. Dziumanenko <mvd@mylinux.com.ua>\n" "Language-Team: Ukrainian <translation-team-uk@lists.sourceforge.net>\n" @@ -7760,25 +7760,25 @@ msgstr "%s: не вдаєтьÑÑ Ð¾Ñ‚Ñ€Ð¸Ð¼Ð°Ñ‚Ð¸ інформацію про Ñ msgid "%s: can't read temporary file.\n" msgstr "%s: не вдаєтьÑÑ Ð¿Ñ€Ð¾Ñ‡Ð¸Ñ‚Ð°Ñ‚Ð¸ тимчаÑовий файл.\n" -#: misc-utils/cal.c:355 misc-utils/cal.c:367 +#: misc-utils/cal.c:358 misc-utils/cal.c:370 #, fuzzy, c-format msgid "illegal day value: use 1-%d" msgstr "неправильне Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ñ€Ð¾ÐºÑƒ: викориÑтовуйте 1-9999" -#: misc-utils/cal.c:359 +#: misc-utils/cal.c:362 msgid "illegal month value: use 1-12" msgstr "неправильне Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð¼Ñ–ÑÑцÑ: викориÑтовуйте 1-12" -#: misc-utils/cal.c:363 +#: misc-utils/cal.c:366 msgid "illegal year value: use 1-9999" msgstr "неправильне Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ñ€Ð¾ÐºÑƒ: викориÑтовуйте 1-9999" -#: misc-utils/cal.c:457 +#: misc-utils/cal.c:460 #, c-format msgid "%s %d" msgstr "%s %d" -#: misc-utils/cal.c:848 +#: misc-utils/cal.c:851 #, fuzzy, c-format msgid "usage: cal [-13smjyV] [[[day] month] year]\n" msgstr "викориÑтаннÑ: cal [-13smjyV] [[міÑÑць] рік]\n" @@ -9449,52 +9449,52 @@ msgstr "не вдаєтьÑÑ Ð·Ð°Ð¿Ð¸Ñати розділ на %s\n" msgid "pid %d's %s scheduling policy: " msgstr "" -#: schedutils/chrt.c:108 +#: schedutils/chrt.c:112 #, fuzzy, c-format msgid "unknown\n" msgstr "невідомий" -#: schedutils/chrt.c:112 +#: schedutils/chrt.c:116 #, c-format msgid "failed to get pid %d's attributes" msgstr "" -#: schedutils/chrt.c:114 +#: schedutils/chrt.c:118 #, c-format msgid "pid %d's %s scheduling priority: %d\n" msgstr "" -#: schedutils/chrt.c:130 +#: schedutils/chrt.c:147 #, c-format msgid "SCHED_%s min/max priority\t: %d/%d\n" msgstr "" -#: schedutils/chrt.c:133 +#: schedutils/chrt.c:150 #, fuzzy, c-format msgid "SCHED_%s not supported?\n" msgstr "NFS через TCP не підтримуєтьÑÑ.\n" -#: schedutils/chrt.c:185 +#: schedutils/chrt.c:206 #, fuzzy msgid "failed to parse pid" msgstr "%s: не вдаєтьÑÑ Ð²Ñ–Ð´ÐºÑ€Ð¸Ñ‚Ð¸: %s\n" -#: schedutils/chrt.c:207 +#: schedutils/chrt.c:228 #, fuzzy msgid "current" msgstr "ncount" -#: schedutils/chrt.c:215 +#: schedutils/chrt.c:236 #, fuzzy msgid "failed to parse priority" msgstr "не вдаєтьÑÑ Ð·Ð°Ð¿Ð¸Ñати розділ на %s\n" -#: schedutils/chrt.c:221 +#: schedutils/chrt.c:242 #, fuzzy, c-format msgid "failed to set pid %d's policy" msgstr "не вдаєтьÑÑ Ð·Ð°Ð¿Ð¸Ñати розділ на %s\n" -#: schedutils/chrt.c:230 +#: schedutils/chrt.c:251 #, fuzzy, c-format msgid "failed to execute %s" msgstr "помилка Ð·Ñ‡Ð¸Ñ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ñ‡Ð°Ñу у ioctl() з %s" @@ -10505,7 +10505,7 @@ msgstr "" msgid "full" msgstr "" -#: sys-utils/lscpu.c:129 sys-utils/lscpu.c:152 sys-utils/lscpu.c:431 +#: sys-utils/lscpu.c:129 sys-utils/lscpu.c:152 sys-utils/lscpu.c:441 #, fuzzy, c-format msgid "error: %s" msgstr "Помилка Ð Ð’: " @@ -10527,16 +10527,16 @@ msgstr "" "\n" "Помилка Ð·Ð°ÐºÑ€Ð¸Ð²Ð°Ð½Ð½Ñ Ñ„Ð°Ð¹Ð»Ñƒ\n" -#: sys-utils/lscpu.c:481 +#: sys-utils/lscpu.c:491 #, fuzzy msgid "error: malloc failed" msgstr "помилка Ð²Ð¸Ð´Ñ–Ð»ÐµÐ½Ð½Ñ Ð¿Ð°Ð¼'ÑÑ‚Ñ–" -#: sys-utils/lscpu.c:496 +#: sys-utils/lscpu.c:506 msgid "error: /sys filesystem is not accessable." msgstr "" -#: sys-utils/lscpu.c:514 +#: sys-utils/lscpu.c:524 #, c-format msgid "" "# The following is the parsable format, which can be fed to other\n" @@ -10545,66 +10545,66 @@ msgid "" "# CPU,Core,Socket,Node" msgstr "" -#: sys-utils/lscpu.c:580 +#: sys-utils/lscpu.c:590 msgid "Thread(s) per core:" msgstr "" -#: sys-utils/lscpu.c:581 +#: sys-utils/lscpu.c:591 msgid "Core(s) per socket:" msgstr "" -#: sys-utils/lscpu.c:582 +#: sys-utils/lscpu.c:592 msgid "CPU socket(s):" msgstr "" -#: sys-utils/lscpu.c:586 +#: sys-utils/lscpu.c:596 msgid "NUMA node(s):" msgstr "" -#: sys-utils/lscpu.c:588 +#: sys-utils/lscpu.c:598 msgid "Vendor ID:" msgstr "" -#: sys-utils/lscpu.c:590 +#: sys-utils/lscpu.c:600 msgid "CPU family:" msgstr "" -#: sys-utils/lscpu.c:592 +#: sys-utils/lscpu.c:602 msgid "Model:" msgstr "" -#: sys-utils/lscpu.c:594 +#: sys-utils/lscpu.c:604 msgid "Stepping:" msgstr "" -#: sys-utils/lscpu.c:596 +#: sys-utils/lscpu.c:606 msgid "CPU MHz:" msgstr "" -#: sys-utils/lscpu.c:599 sys-utils/lscpu.c:601 +#: sys-utils/lscpu.c:609 sys-utils/lscpu.c:611 #, fuzzy msgid "Virtualization:" msgstr "Старий Ñтан:\n" -#: sys-utils/lscpu.c:604 +#: sys-utils/lscpu.c:614 msgid "Hypervisor vendor:" msgstr "" -#: sys-utils/lscpu.c:605 +#: sys-utils/lscpu.c:615 msgid "Virtualization type:" msgstr "" -#: sys-utils/lscpu.c:613 +#: sys-utils/lscpu.c:623 #, c-format msgid "%s cache:" msgstr "" -#: sys-utils/lscpu.c:621 +#: sys-utils/lscpu.c:631 #, fuzzy, c-format msgid "Usage: %s [option]\n" msgstr "ВикориÑтаннÑ: %s [параметри] приÑтрій ...\n" -#: sys-utils/lscpu.c:624 +#: sys-utils/lscpu.c:634 msgid "" "CPU architecture information helper\n" "\n" @@ -10613,7 +10613,7 @@ msgid "" " -s, --sysroot use the directory as a new system root.\n" msgstr "" -#: sys-utils/lscpu.c:673 +#: sys-utils/lscpu.c:683 #, fuzzy, c-format msgid "error: change working directory to %s." msgstr "помилка зімни режиму доÑтупу до %s: %s\n" diff --git a/po/util-linux-ng.pot b/po/util-linux-ng.pot index ff9706a1..d78864b0 100644 --- a/po/util-linux-ng.pot +++ b/po/util-linux-ng.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: Karel Zak <kzak@redhat.com>\n" -"POT-Creation-Date: 2009-04-29 15:34+0200\n" +"POT-Creation-Date: 2009-05-27 21:39+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -7176,25 +7176,25 @@ msgstr "" msgid "%s: can't read temporary file.\n" msgstr "" -#: misc-utils/cal.c:355 misc-utils/cal.c:367 +#: misc-utils/cal.c:358 misc-utils/cal.c:370 #, c-format msgid "illegal day value: use 1-%d" msgstr "" -#: misc-utils/cal.c:359 +#: misc-utils/cal.c:362 msgid "illegal month value: use 1-12" msgstr "" -#: misc-utils/cal.c:363 +#: misc-utils/cal.c:366 msgid "illegal year value: use 1-9999" msgstr "" -#: misc-utils/cal.c:457 +#: misc-utils/cal.c:460 #, c-format msgid "%s %d" msgstr "" -#: misc-utils/cal.c:848 +#: misc-utils/cal.c:851 #, c-format msgid "usage: cal [-13smjyV] [[[day] month] year]\n" msgstr "" @@ -8784,49 +8784,49 @@ msgstr "" msgid "pid %d's %s scheduling policy: " msgstr "" -#: schedutils/chrt.c:108 +#: schedutils/chrt.c:112 #, c-format msgid "unknown\n" msgstr "" -#: schedutils/chrt.c:112 +#: schedutils/chrt.c:116 #, c-format msgid "failed to get pid %d's attributes" msgstr "" -#: schedutils/chrt.c:114 +#: schedutils/chrt.c:118 #, c-format msgid "pid %d's %s scheduling priority: %d\n" msgstr "" -#: schedutils/chrt.c:130 +#: schedutils/chrt.c:147 #, c-format msgid "SCHED_%s min/max priority\t: %d/%d\n" msgstr "" -#: schedutils/chrt.c:133 +#: schedutils/chrt.c:150 #, c-format msgid "SCHED_%s not supported?\n" msgstr "" -#: schedutils/chrt.c:185 +#: schedutils/chrt.c:206 msgid "failed to parse pid" msgstr "" -#: schedutils/chrt.c:207 +#: schedutils/chrt.c:228 msgid "current" msgstr "" -#: schedutils/chrt.c:215 +#: schedutils/chrt.c:236 msgid "failed to parse priority" msgstr "" -#: schedutils/chrt.c:221 +#: schedutils/chrt.c:242 #, c-format msgid "failed to set pid %d's policy" msgstr "" -#: schedutils/chrt.c:230 +#: schedutils/chrt.c:251 #, c-format msgid "failed to execute %s" msgstr "" @@ -9787,7 +9787,7 @@ msgstr "" msgid "full" msgstr "" -#: sys-utils/lscpu.c:129 sys-utils/lscpu.c:152 sys-utils/lscpu.c:431 +#: sys-utils/lscpu.c:129 sys-utils/lscpu.c:152 sys-utils/lscpu.c:441 #, c-format msgid "error: %s" msgstr "" @@ -9805,15 +9805,15 @@ msgstr "" msgid "error: uname failed" msgstr "" -#: sys-utils/lscpu.c:481 +#: sys-utils/lscpu.c:491 msgid "error: malloc failed" msgstr "" -#: sys-utils/lscpu.c:496 +#: sys-utils/lscpu.c:506 msgid "error: /sys filesystem is not accessable." msgstr "" -#: sys-utils/lscpu.c:514 +#: sys-utils/lscpu.c:524 #, c-format msgid "" "# The following is the parsable format, which can be fed to other\n" @@ -9822,65 +9822,65 @@ msgid "" "# CPU,Core,Socket,Node" msgstr "" -#: sys-utils/lscpu.c:580 +#: sys-utils/lscpu.c:590 msgid "Thread(s) per core:" msgstr "" -#: sys-utils/lscpu.c:581 +#: sys-utils/lscpu.c:591 msgid "Core(s) per socket:" msgstr "" -#: sys-utils/lscpu.c:582 +#: sys-utils/lscpu.c:592 msgid "CPU socket(s):" msgstr "" -#: sys-utils/lscpu.c:586 +#: sys-utils/lscpu.c:596 msgid "NUMA node(s):" msgstr "" -#: sys-utils/lscpu.c:588 +#: sys-utils/lscpu.c:598 msgid "Vendor ID:" msgstr "" -#: sys-utils/lscpu.c:590 +#: sys-utils/lscpu.c:600 msgid "CPU family:" msgstr "" -#: sys-utils/lscpu.c:592 +#: sys-utils/lscpu.c:602 msgid "Model:" msgstr "" -#: sys-utils/lscpu.c:594 +#: sys-utils/lscpu.c:604 msgid "Stepping:" msgstr "" -#: sys-utils/lscpu.c:596 +#: sys-utils/lscpu.c:606 msgid "CPU MHz:" msgstr "" -#: sys-utils/lscpu.c:599 sys-utils/lscpu.c:601 +#: sys-utils/lscpu.c:609 sys-utils/lscpu.c:611 msgid "Virtualization:" msgstr "" -#: sys-utils/lscpu.c:604 +#: sys-utils/lscpu.c:614 msgid "Hypervisor vendor:" msgstr "" -#: sys-utils/lscpu.c:605 +#: sys-utils/lscpu.c:615 msgid "Virtualization type:" msgstr "" -#: sys-utils/lscpu.c:613 +#: sys-utils/lscpu.c:623 #, c-format msgid "%s cache:" msgstr "" -#: sys-utils/lscpu.c:621 +#: sys-utils/lscpu.c:631 #, c-format msgid "Usage: %s [option]\n" msgstr "" -#: sys-utils/lscpu.c:624 +#: sys-utils/lscpu.c:634 msgid "" "CPU architecture information helper\n" "\n" @@ -9889,7 +9889,7 @@ msgid "" " -s, --sysroot use the directory as a new system root.\n" msgstr "" -#: sys-utils/lscpu.c:673 +#: sys-utils/lscpu.c:683 #, c-format msgid "error: change working directory to %s." msgstr "" @@ -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 <kzak@redhat.com>\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-05-27 21:39+0200\n" +"PO-Revision-Date: 2009-05-13 20:37+0930\n" "Last-Translator: Clytie Siddall <clytie@riverland.net.au>\n" "Language-Team: Vietnamese <vi-VN@googlegroups.com>\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,7 +1027,7 @@ 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" @@ -1048,20 +1045,24 @@ 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 @@ -1357,11 +1358,10 @@ 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" +"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 +1370,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 +1387,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 +1411,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 +1425,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 +1435,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 +1454,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 +1490,66 @@ 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<N> where <N> is greater than zero)\n" msgstr "" +"Thiết bị « %s » là thiết bị thô Ä‘iá»u khiển (hãy dùng thô<N> mà <N> 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" @@ -1838,13 +1841,12 @@ 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." +"Äã 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." @@ -2155,7 +2157,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 +2287,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" @@ -3038,7 +3040,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 +3057,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 @@ -3417,7 +3425,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 +3454,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,14 +3502,14 @@ 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 @@ -3604,7 +3612,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 +3620,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 +3645,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 @@ -4532,7 +4541,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 +4557,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 +4614,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 +4622,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 +4665,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" @@ -4915,7 +4923,7 @@ msgid "" "Id Name\n" "\n" msgstr "" -"Tên Id\n" +"Id Tên\n" "\n" #: fdisk/sfdisk.c:821 @@ -4924,14 +4932,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 @@ -5726,14 +5735,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,47 +5751,52 @@ 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 @@ -5790,70 +5804,71 @@ 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" 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" @@ -5971,22 +5986,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 @@ -6060,7 +6075,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 @@ -6096,13 +6111,13 @@ 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 @@ -6228,14 +6243,14 @@ 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 @@ -6302,12 +6317,12 @@ msgstr "" msgid "" "Could not open file with the clock adjustment parameters in it (%s) for " "writing" -msgstr "" +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 @@ -6323,12 +6338,12 @@ msgstr "" "chỉnh.\n" #: hwclock/hwclock.c:1066 -#, fuzzy, c-format +#, 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" +"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,9 +6366,9 @@ 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 @@ -6402,7 +6417,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 +6455,55 @@ 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 " +" -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 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" +" --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 @@ -6724,12 +6747,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=<label>|UUID=<uuid>\n" -msgstr "" +msgstr "Sá» dụng: %s LABEL=<nhãn>|UUID=<uuid>\n" #: libs/blkid/bin/findfs.c:55 -#, fuzzy, c-format +#, c-format msgid "unable to resolve '%s'" -msgstr "không mở được %s" +msgstr "không giải quyết được « %s »" #: login-utils/agetty.c:361 #, c-format @@ -6912,15 +6935,15 @@ msgstr "[ --help ] [ --version ]\n" #: login-utils/chfn.c:378 msgid "Office" -msgstr "" +msgstr "Văn phòng" #: login-utils/chfn.c:379 msgid "Office Phone" -msgstr "" +msgstr "Äiện thoại văn phòng" #: login-utils/chfn.c:380 msgid "Home Phone" -msgstr "" +msgstr "Äiện thoại ở nhà " #: login-utils/chfn.c:401 login-utils/chsh.c:321 #, c-format @@ -6934,7 +6957,7 @@ msgstr "" #: login-utils/chfn.c:434 #, c-format msgid "field is too long.\n" -msgstr "vùng quá dà i.\n" +msgstr "trÆ°á»ng quá dà i.\n" #: login-utils/chfn.c:442 #, c-format @@ -7587,7 +7610,7 @@ msgstr "mở thÆ° mục không thà nh công\n" #: login-utils/simpleinit.c:501 #, c-format msgid "respawning: \"%s\" too fast: quenching entry\n" -msgstr "" +msgstr "Ä‘ang tạo và thá»±c hiện lại « %s » quá nhanh: Ä‘ang dáºp tắt mục nháºp\n" #: login-utils/simpleinit.c:509 msgid "fork failed\n" @@ -7606,19 +7629,19 @@ msgid "no TERM or cannot stat tty\n" msgstr "không có TERM hoặc không thể stat (lấy trạng thái vá») tty\n" #: login-utils/simpleinit.c:938 -#, fuzzy, c-format +#, c-format msgid "error stopping service: \"%s\"\n" -msgstr "lá»—i dừng dịch vụ: \"%s\"" +msgstr "lá»—i dừng dịch vụ: « %s »\n" #: login-utils/simpleinit.c:950 -#, fuzzy, c-format +#, c-format msgid "Stopped service: %s\n" -msgstr "lá»—i dừng dịch vụ: \"%s\"" +msgstr "Dịch vụ bị dừng: %s\n" #: login-utils/simpleinit.c:1070 -#, fuzzy, c-format +#, c-format msgid "error running programme: \"%s\"\n" -msgstr "lá»—i chạy finalprog (chÆ°Æ¡ng trình cuối cùng)\n" +msgstr "lá»—i chạy chÆ°Æ¡ng trình: « %s »\n" #: login-utils/ttymsg.c:75 msgid "too many iov's (change code in wall/ttymsg.c)" @@ -7627,7 +7650,7 @@ msgstr "quá nhiá»u iov (thay đổi mã trong wall/ttymsg.c)" #: login-utils/ttymsg.c:85 #, c-format msgid "excessively long line arg" -msgstr "arg dà i quá mức" +msgstr "dòng đối số quá dà i" #: login-utils/ttymsg.c:140 #, c-format @@ -7744,25 +7767,25 @@ msgstr "%s: không lấy được trạng thái (stat) táºp tin tạm thá»i.\n msgid "%s: can't read temporary file.\n" msgstr "%s: không Ä‘á»c được táºp tin tạm thá»i.\n" -#: misc-utils/cal.c:355 misc-utils/cal.c:367 +#: misc-utils/cal.c:358 misc-utils/cal.c:370 #, c-format msgid "illegal day value: use 1-%d" msgstr "giá trị ngà y bị sai: hãy dùng 1-%d" -#: misc-utils/cal.c:359 +#: misc-utils/cal.c:362 msgid "illegal month value: use 1-12" msgstr "giá trị tháng bị sai: hãy dùng 1-12" -#: misc-utils/cal.c:363 +#: misc-utils/cal.c:366 msgid "illegal year value: use 1-9999" msgstr "giá trị năm bị sai: hãy dùng 1-9999" -#: misc-utils/cal.c:457 +#: misc-utils/cal.c:460 #, c-format msgid "%s %d" msgstr "%s %d" -#: misc-utils/cal.c:848 +#: misc-utils/cal.c:851 #, c-format msgid "usage: cal [-13smjyV] [[[day] month] year]\n" msgstr "sá» dụng: cal [-13smjyV] [[[ngà y] tháng] năm]\n" @@ -7856,35 +7879,36 @@ msgstr "Nháºn %d byte từ %s\n" #: misc-utils/namei.c:144 misc-utils/namei.c:198 misc-utils/namei.c:220 #: misc-utils/namei.c:227 misc-utils/namei.c:248 -#, fuzzy msgid "out of memory?" -msgstr "trà n bá»™ nhá»›?\n" +msgstr "không đủ bá»™ nhá»› ?" #: misc-utils/namei.c:189 -#, fuzzy, c-format +#, c-format msgid "failed to read symlink: %s" -msgstr "lá»—i Ä‘á»c táºp tin đếm thá»i gian %s" +msgstr "lá»—i Ä‘á»c liên kết tượng trÆ°ng: %s" #: misc-utils/namei.c:229 -#, fuzzy, c-format +#, c-format msgid "could not stat '%s'" msgstr "không thể lấy trạng thái vỠ« %s »" #: misc-utils/namei.c:411 -#, fuzzy, c-format +#, c-format msgid "" "\n" "Usage: %s [options] pathname [pathname ...]\n" -msgstr "sá» dụng: namei [-mx] tên_Ä‘Æ°á»ng_dẫn [tên_Ä‘Æ°á»ng_dẫn ...]\n" +msgstr "" +"\n" +"Sá» dụng: %s [các_tuỳ_chá»n] tên_Ä‘Æ°á»ng_dẫn [tên_Ä‘Æ°á»ng_dẫn ...]\n" #: misc-utils/namei.c:412 -#, fuzzy, c-format +#, c-format msgid "" "\n" "Options:\n" msgstr "" "\n" -"%d phân vùng:\n" +"Tuỳ chá»n:\n" #: misc-utils/namei.c:415 #, c-format @@ -7897,25 +7921,32 @@ msgid "" " -n, --nosymlinks don't follow symlinks\n" " -v, --vertical vertical align of modes and owners\n" msgstr "" +" -h, --help hiển thị trợ giúp nà y\n" +" -x, --mountpoints hiển thị các thÆ° mục Ä‘iểm lắp dùng « D »\n" +" -m, --modes hiển thị các bit chế Ä‘á»™ của má»—i táºp tin\n" +" -o, --owners hiển thị tên chủ và nhóm của má»—i táºp tin\n" +" -l, --long dùng má»™t định dạng liệt kê dà i (-m -o -v) \n" +" -n, --nosymlinks đừng theo liên kết tượng trÆ°ng\n" +" -v, --vertical sắp hà ng theo chiá»u dá»c các chế Ä‘á»™ và chủ\n" #: misc-utils/namei.c:423 -#, fuzzy, c-format +#, c-format msgid "" "\n" "For more information see namei(1).\n" msgstr "" "\n" -"Äể tìm thêm thông tin, xem « setarch(8) ».\n" +"Äể tìm thêm thông tin, xem namei(1).\n" #: misc-utils/namei.c:484 -#, fuzzy, c-format +#, c-format msgid "failed to stat: %s" -msgstr "không thể lấy trạng thái vá» %s" +msgstr "lá»—i lấy trạng thái: %s" #: misc-utils/namei.c:495 #, c-format msgid "%s: exceeded limit of symlinks" -msgstr "" +msgstr "%s: vượt quá hạn ngạch số các liên kết tượng trÆ°ng" #: misc-utils/rename.c:38 #, c-format @@ -8413,7 +8444,7 @@ msgstr "không khóa được táºp tin khóa (lock file) %s: %s" #: mount/fstab.c:661 msgid "timed out" -msgstr "hết thá»i gian" +msgstr "quá hạn" #: mount/fstab.c:668 #, c-format @@ -8491,9 +8522,9 @@ msgid "%s: /dev directory does not exist." msgstr "%s: thÆ° mục « /dev » không tồn tại." #: mount/lomount.c:441 mount/lomount.c:589 -#, fuzzy, c-format +#, c-format msgid "%s: no permission to look at /dev/loop%s<N>" -msgstr "%s: không có quyá»n xem « /dev/loop# »" +msgstr "%s: không có quyá»n xem /dev/loop%s<N>" #: mount/lomount.c:592 #, c-format @@ -8512,7 +8543,7 @@ msgstr "" #: mount/lomount.c:625 msgid "Out of memory while reading passphrase" -msgstr "Trà n bá»™ nhá»› khi Ä‘á»c cụm từ máºt khẩu" +msgstr "Không đủ bá»™ nhá»› khi Ä‘á»c cụm từ máºt khẩu" #: mount/lomount.c:668 #, c-format @@ -8557,7 +8588,7 @@ msgstr "" "lại.\n" #: mount/lomount.c:875 -#, fuzzy, c-format +#, c-format msgid "" "\n" "Usage:\n" @@ -8571,13 +8602,15 @@ msgid "" msgstr "" "\n" "Sá» dụng:\n" -" %1$s thiết_bị_vòng_lặp cung cấp thông tin\n" -" %1$s -a | --all liệt kê tất cả Ä‘ang dùng\n" -" %1$s -d | --detach <thiết_bị_vòng_lặp> xoá\n" -" %1$s -f | --find tìm cái không dùng\n" +" %1$s TBVL cung cấp thông tin\n" +" %1$s -a | --all liệt kê tất cả được dùng\n" +" %1$s -d | --detach <TBVL> [<TBVL> ...] xoá\n" +" %1$s -f | --find tìm các cái không dùng\n" " %1$s -j | --associated <táºp_tin> [-o <số>]\n" -"\t\t\t\t\t\t\tliệt kê tất cả liên quan đến táºp tin nà y\n" -" %1$s [ các_tùy_chá»n ] {-f|--find|thiết_bị_vòng_lặp} <táºp_tin> thiết láºp\n" +"\t\t\t\t\tliệt kê tất cả liên quan đến táºp tin nà y\n" +" %1$s [ các_tùy_chá»n ] {-f|--find|TBVL} <táºp_tin> thiết láºp\n" +"\n" +"TBVL: thiết bị vòng lặp\n" #: mount/lomount.c:884 #, c-format @@ -9169,7 +9202,7 @@ msgstr "" "\n" #: mount/swapon.c:92 -#, fuzzy, c-format +#, c-format msgid "" "\n" "Usage:\n" @@ -9182,11 +9215,12 @@ msgid "" msgstr "" "\n" "Sá» dụng:\n" -" %1$s -a [-e] [-v] \t\tbáºt má»i trao đổi từ « /etc/fstab »\n" -" %1$s [-p Æ°u_tiên] [-v] <đặc_biệt> \tbáºt trao đổi đã cho\n" -" %1$s -s \t\t\thiển thị bản tóm tắt %1$s -" -"h \t\t\thiển thị trợ giúp\n" -" %1$s -V \t\t\thiển thị phiên bản\n" +" %1$s -a [-e] [-v] [-f] báºt tất cả các vùng trao đổi từ /etc/fstab\n" +" %1$s [-p Æ°u_tiên] [-v] [-f] <đặc_biệt> báºt vùng trao đổi Ä‘Æ°a ra\n" +" %1$s -s hiển thị lược sá» vá» cách sá» dụng vùng " +"trao đổi\n" +" %1$s -h hiển thị trợ giúp\n" +" %1$s -V hiển thị phiên bản\n" "\n" #: mount/swapon.c:106 @@ -9209,96 +9243,96 @@ msgstr "" "\n" #: mount/swapon.c:138 -#, fuzzy, c-format +#, c-format msgid "%s: unexpected file format" -msgstr "%s: %s: định dạng táºp tin bất thÆ°á»ng\n" +msgstr "%s: gặp định dạng táºp tin bất thÆ°á»ng" #: mount/swapon.c:177 mount/swapon.c:245 mount/swapon.c:390 mount/swapon.c:549 #: mount/swapon.c:751 -#, fuzzy, c-format +#, c-format msgid "%s: open failed" -msgstr "openpty không thà nh công\n" +msgstr "%s: lá»—i mở" #: mount/swapon.c:198 -#, fuzzy, c-format +#, c-format msgid "%s: reinitializing the swap." -msgstr "%s: %s: phát hiện dữ liệu ngÆ°ng phần má»m. Äang sÆ¡ khởi lại trao đổi.\n" +msgstr "%s: Ä‘ang sÆ¡ khởi lại vùng trao đổi." #: mount/swapon.c:202 -#, fuzzy msgid "fork failed" -msgstr "phân nhánh không thà nh công\n" +msgstr "lá»—i phân nhánh" #: mount/swapon.c:218 -#, fuzzy msgid "execv failed" -msgstr "thá»±c hiện (exec) không thà nh công\n" +msgstr "execv bị lá»—i" #: mount/swapon.c:226 -#, fuzzy msgid "waitpid failed" -msgstr "setuid() bị lá»—i" +msgstr "waitpid bị lá»—i" #: mount/swapon.c:250 -#, fuzzy, c-format +#, c-format msgid "%s: lseek failed" -msgstr "tìm nÆ¡i bị lá»—i" +msgstr "%s: lseek bị lá»—i" #: mount/swapon.c:256 -#, fuzzy, c-format +#, c-format msgid "%s: write signature failed" -msgstr "lá»—i ghi và o đầu ra tiêu chuẩn" +msgstr "%s: lá»—i ghi chữ ký" #: mount/swapon.c:343 #, c-format msgid "%s: found %sswap v%d signature string for %d KiB PAGE_SIZE\n" msgstr "" +"%s: tìm thấy chuá»—i chữ ký vùng trao đổi %s v%d cho %d KiB KÃCH_Cá» _TRANG\n" #: mount/swapon.c:363 -#, fuzzy, c-format +#, c-format msgid "%s: stat failed" -msgstr "%s bị lá»—i.\n" +msgstr "%s: lá»—i lấy trạng thái" #: mount/swapon.c:373 -#, fuzzy, c-format +#, c-format msgid "%s: insecure permissions %04o, %04o suggested." -msgstr "%s: cảnh báo: %s có quyá»n không bảo máºt %04o, Ä‘á» nghị dùng %04o\n" +msgstr "%s: có quyá»n không bảo máºt %04o, Ä‘á» nghị dùng %04o." #: mount/swapon.c:381 -#, fuzzy, c-format +#, c-format msgid "%s: skipping - it appears to have holes." -msgstr "%s: Bá» qua táºp tin %s - nó có vẻ có lá»— hổng.\n" +msgstr "%s: Ä‘ang bá» qua — có vẻ là nó bị lá»—." #: mount/swapon.c:395 -#, fuzzy, c-format +#, c-format msgid "%s: get size failed" -msgstr "tìm nÆ¡i bị lá»—i" +msgstr "%s: lá»—i lấy kÃch cỡ" #: mount/swapon.c:401 #, c-format msgid "%s: read swap header failed" -msgstr "" +msgstr "%s: lá»—i Ä‘á»c phần đầu vùng trao đổi" #: mount/swapon.c:414 #, c-format msgid "%s: last_page 0x%08llx is larger than actual size of swapspace" -msgstr "" +msgstr "%s: last_page 0x%08llx lá»›n hÆ¡n kÃch cỡ tháºt của vùng trao đổi" #: mount/swapon.c:419 #, c-format msgid "%s: swap format pagesize does not match." -msgstr "" +msgstr "%s: kÃch cỡ trang định dạng trao đổi không tÆ°Æ¡ng ứng." #: mount/swapon.c:424 #, c-format msgid "" "%s: swap format pagesize does not match. (Use --fixpgsz to reinitialize it.)" msgstr "" +"%s: kÃch cỡ trang định dạng trao đổi không tÆ°Æ¡ng ứng. (Dùng --fixpgsz để sÆ¡ " +"khởi lại nó.)" #: mount/swapon.c:433 -#, fuzzy, c-format +#, c-format msgid "%s: software suspend data detected. Rewriting the swap signature." -msgstr "%s: %s: phát hiện dữ liệu ngÆ°ng phần má»m. Äang sÆ¡ khởi lại trao đổi.\n" +msgstr "%s: phát hiện dữ liệu ngÆ°ng phần má»m. Äang ghi lại chữ ký trao đổi." #: mount/swapon.c:457 mount/swapon.c:507 #, c-format @@ -9306,24 +9340,23 @@ msgid "%s on %s\n" msgstr "%s trên %s\n" #: mount/swapon.c:479 -#, fuzzy, c-format +#, c-format msgid "%s: swapon failed" -msgstr "%s bị lá»—i.\n" +msgstr "%s swapon bị lá»—i" #: mount/swapon.c:486 -#, fuzzy, c-format +#, c-format msgid "cannot find the device for %s" -msgstr "%s: không tìm thấy thiết bị cho %s\n" +msgstr "không tìm thấy thiết bị cho %s" #: mount/swapon.c:519 -#, fuzzy msgid "Not superuser." -msgstr "Không phải siêu ngÆ°á»i dùng.\n" +msgstr "Không phải siêu ngÆ°á»i dùng.s" #: mount/swapon.c:522 -#, fuzzy, c-format +#, c-format msgid "%s: swapoff failed" -msgstr "%s bị lá»—i.\n" +msgstr "%s swapoff bị lá»—i" #: mount/umount.c:40 #, c-format @@ -9438,12 +9471,14 @@ msgstr "Äang thá» bá» gắn %s\n" #: mount/umount.c:465 msgid "umount: confused when analyzing mtab" -msgstr "" +msgstr "umount: biÌ£ lẫn lộn khi phân tÃch mtab" #: mount/umount.c:470 #, c-format msgid "umount: cannot umount %s -- %s is mounted over it on the same point." msgstr "" +"umount: không thể tháo gắn kết %s — %s được gắn kết ở trên nó ở cùng má»™t " +"Ä‘iểm." #: mount/umount.c:477 #, c-format @@ -9458,7 +9493,7 @@ msgstr "umount: %s chÆ°a gắn (theo mtab)" #: mount/umount.c:508 #, c-format msgid "umount: it seems %s is mounted multiple times" -msgstr "umount: có vẻ %s được gắn nhiá»u lần" +msgstr "umount: có vẻ là %s được gắn nhiá»u lần" #: mount/umount.c:521 #, c-format @@ -9507,76 +9542,96 @@ msgid "" " -V | --version output version information\n" "\n" msgstr "" +"\n" +"chrt — thao tác các thuá»™c tÃnh thá»i gian tháºt của má»™t tiến trình.\n" +"\n" +"Äặt chÃnh sách:\n" +" chrt [các_tùy_chá»n] <chÃnh_sách> <Æ°u_tiên> {<pid> | <lệnh> " +"[<đối_số> ...]}\n" +"\n" +"Lấy chÃnh sách:\n" +" chrt [các_tùy_chá»n] {<pid> | <lệnh> [<đối_số> ...]}\n" +"\n" +"\n" +"ChÃnh sách định thá»i:\n" +" -b | --batch đặt chÃnh sách thà nh SCHED_BATCH\n" +" -f | --fifo đặt chÃnh sách thà nh SCHED_FIFO\n" +" -i | --idle đặt chÃnh sách thà nh SCHED_IDLE\n" +" -o | --other đặt chÃnh sách thà nh SCHED_OTHER\n" +" -r | --rr đặt chÃnh sách thà nh SCHED_RR (mặc định)\n" +"\n" +"Tuỳ chá»n:\n" +" -h | --help hiển thị trợ giúp nà y\n" +" -p | --pid thao tác trên mã số tiến trình (PID) đã Ä‘Æ°a ra\n" +" -m | --max hiển thị mức Æ°u tiên hợp lệ tối Ä‘a và tối thiểu\n" +" -v | --verbose hiển thị thông tin trạng thái\n" +" -V | --version xuất thông tin phiên bản\n" +"\n" #: schedutils/chrt.c:88 -#, fuzzy, c-format +#, c-format msgid "failed to get pid %d's policy" -msgstr "Lá»—i đặt cá tÃnh thà nh %s" +msgstr "lá»—i lấy chÃnh sách của PID %d" #: schedutils/chrt.c:90 #, c-format msgid "pid %d's %s scheduling policy: " -msgstr "" +msgstr "chÃnh sách định thá»i %2$s của PID %1$d: " -#: schedutils/chrt.c:108 -#, fuzzy, c-format +#: schedutils/chrt.c:112 +#, c-format msgid "unknown\n" -msgstr "không rõ" +msgstr "không rõ\n" -#: schedutils/chrt.c:112 +#: schedutils/chrt.c:116 #, c-format msgid "failed to get pid %d's attributes" -msgstr "" +msgstr "lá»—i lấy các thuá»™c tÃnh vá» PID %d" -#: schedutils/chrt.c:114 +#: schedutils/chrt.c:118 #, c-format msgid "pid %d's %s scheduling priority: %d\n" -msgstr "" +msgstr "mức Æ°u tiên định thá»i %2$s của PID %1$d: %3$d\n" -#: schedutils/chrt.c:130 +#: schedutils/chrt.c:147 #, c-format msgid "SCHED_%s min/max priority\t: %d/%d\n" -msgstr "" +msgstr "SCHED_%s Æ°u tiên tiểu/Ä‘a\t: %d/%d\n" -#: schedutils/chrt.c:133 +#: schedutils/chrt.c:150 #, c-format msgid "SCHED_%s not supported?\n" -msgstr "" +msgstr "SCHED_%s không được há»— trợ ?\n" -#: schedutils/chrt.c:185 -#, fuzzy +#: schedutils/chrt.c:206 msgid "failed to parse pid" -msgstr "%s: không mở được: %s\n" +msgstr "lá»—i phân tÃch PID" -#: schedutils/chrt.c:207 -#, fuzzy +#: schedutils/chrt.c:228 msgid "current" -msgstr "ncount" +msgstr "hiện thá»i" -#: schedutils/chrt.c:215 -#, fuzzy +#: schedutils/chrt.c:236 msgid "failed to parse priority" -msgstr "Lá»—i đặt cá tÃnh thà nh %s" +msgstr "lá»—i phân tÃch mức Æ°u tiên" -#: schedutils/chrt.c:221 -#, fuzzy, c-format +#: schedutils/chrt.c:242 +#, c-format msgid "failed to set pid %d's policy" -msgstr "Lá»—i đặt cá tÃnh thà nh %s" +msgstr "lá»—i đặt chÃnh sách của PID %d" -#: schedutils/chrt.c:230 -#, fuzzy, c-format +#: schedutils/chrt.c:251 +#, c-format msgid "failed to execute %s" -msgstr "lá»—i Ä‘á»c táºp tin bản đánh máy %s" +msgstr "lá»—i thá»±c hiện %s" #: schedutils/ionice.c:57 -#, fuzzy msgid "ioprio_get failed" -msgstr "openpty không thà nh công\n" +msgstr "ioprio_get bị lá»—i" #: schedutils/ionice.c:75 -#, fuzzy msgid "ioprio_set failed" -msgstr "openpty không thà nh công\n" +msgstr "ioprio_set bị lá»—i" #: schedutils/ionice.c:81 #, c-format @@ -9596,25 +9651,41 @@ msgid "" " -h this help\n" "\n" msgstr "" +"\n" +"ionice — đặt hay lấy hạng và mức Æ°u tiên định thá»i V/R của tiến trình.\n" +"\n" +"Sá» dụng:\n" +" ionice [ các_tùy_chá»n ] -p <pid> [<pid> ...]\n" +" ionoce [ các_tùy_chá»n ] <lệnh> [<đối_số> ...]\n" +"\n" +"Tuỳ chá»n:\n" +" -n <dữ_liệu_hạng> dữ liệu hạng (0-7, nhá» hÆ¡n thì mức Æ°u tiên cao " +"hÆ¡n)\n" +" -c <hạng> hạng định thá»i\n" +" \t\t1\tthá»i gian tháºt\n" +"\t\t\t\t2\tsá»± cố gắng tốt nhất\n" +"\t\t\t\t3\tnghỉ\n" +" -t bá» qua lá»—i\n" +" -h trợ giúp nà y\n" +"\n" #: schedutils/ionice.c:110 schedutils/ionice.c:112 -#, fuzzy, c-format +#, c-format msgid "cannot parse number '%s'" -msgstr "không mở được %s" +msgstr "không thể phân tÃch số « %s »" #: schedutils/ionice.c:157 msgid "ignoring given class data for idle class" -msgstr "" +msgstr "Ä‘ang lá» Ä‘i dữ liệu hạng Ä‘Æ°a ra cho hạng nghỉ" #: schedutils/ionice.c:161 #, c-format msgid "bad prio class %d" -msgstr "" +msgstr "hạng Æ°u tiên sai %d" #: schedutils/ionice.c:185 -#, fuzzy msgid "execvp failed" -msgstr "thá»±c hiện (exec) không thà nh công\n" +msgstr "execvp bị lá»—i" #: sys-utils/ctrlaltdel.c:27 #, c-format @@ -9776,39 +9847,55 @@ msgid "" " -h --help Display this text\n" " -V --version Display version\n" msgstr "" +"Sá» dụng: %1$s [-sxun][-w #] fd#\n" +" %1$s [-sxon][-w #] táºp_tin [-c] lệnh...\n" +" %1$s [-sxon][-w #] thÆ°_mục [-c] lệnh...\n" +"\n" +" -s --shared Lấy má»™t sá»± khoá dùng chung\n" +" -x --exclusive Lấy má»™t sá»± khoá riêng\n" +" -u --unlock Gỡ bá» má»™t sá»± khoá\n" +" -n --nonblock Thất bại hÆ¡n là đợi\n" +" -w --timeout Äợi má»™t khoảng thá»i gian\n" +" -o --close Äóng bá»™ mô tả táºp tin trÆ°á»›c khi chạy câu lệnh\n" +" -c --command Chạy trong trình bao má»™t chuá»—i lệnh riêng lẻ\n" +" -h --help Hiển thị trợ giúp nà y\n" +" -V --version Hiển thị phiên bản\n" #: sys-utils/flock.c:192 -#, fuzzy, c-format +#, c-format msgid "%s: %s requires exactly one command argument\n" -msgstr "%s yêu cầu má»™t tham số\n" +msgstr "%s: %s: yêu cầu chÃnh sách má»™t đối số lệnh\n" #: sys-utils/flock.c:219 -#, fuzzy, c-format +#, c-format msgid "%s: cannot open lock file %s: %s\n" -msgstr "%s: không mở được %s: %s\n" +msgstr "%s: không mở được táºp tin sá»± khoá %s: %s\n" #: sys-utils/flock.c:231 -#, fuzzy, c-format +#, c-format msgid "%s: bad number: %s\n" -msgstr "%s: giá trị xấu\n" +msgstr "%s: số sai: %s\n" #: sys-utils/flock.c:238 #, c-format msgid "%s: requires file descriptor, file or directory\n" -msgstr "" +msgstr "%s: yêu cầu bá»™ mô tả táºp tin, táºp tin hay thÆ° mục\n" #: sys-utils/flock.c:294 -#, fuzzy, c-format +#, c-format msgid "%s: fork failed: %s\n" -msgstr "phân nhánh không thà nh công\n" +msgstr "%s: lá»—i phân nhánh: %s\n" #: sys-utils/ipcmk.c:84 -#, fuzzy, c-format +#, c-format msgid "" "\n" "Usage: %s [options]\n" "\n" -msgstr "Sá» dụng: %s [tùy chá»n] thiết bị...\n" +msgstr "" +"\n" +"Sá» dụng: %s [các_tùy_chá»n]\n" +"\n" #: sys-utils/ipcmk.c:86 #, c-format @@ -9818,50 +9905,47 @@ msgid "" " -Q create message queue\n" " -p <mode> permission for the resource (default is 0644)\n" msgstr "" +" -M <kÃch_cỡ> tạo Ä‘oạn nhá»› dùng chung có kÃch cỡ nà y\n" +" -S <số> tạo mảng cá» hiệu có số mục nà y\n" +" -Q tạo hà ng đợi thông Ä‘iệp\n" +" -p <chế_Ä‘á»™> quyá»n hạn của tà i nguyên (mặc định 0644)\n" #: sys-utils/ipcmk.c:90 -#, fuzzy, c-format +#, c-format msgid "" "\n" "For more information see ipcmk(1).\n" "\n" msgstr "" "\n" -"Äể tìm thêm thông tin, xem « setarch(8) ».\n" +"Äể tìm thêm thông tin, xem ipcmk(1).\n" #: sys-utils/ipcmk.c:142 msgid "create share memory failed" -msgstr "" +msgstr "lá»—i tạo vùng nhá»› dùng chung" #: sys-utils/ipcmk.c:144 -#, fuzzy, c-format +#, c-format msgid "Shared memory id: %d\n" -msgstr "" -"\n" -"shmid của má»™t Ä‘oạn bá»™ nhá»› chia sẻ =%d\n" +msgstr "Mã số vùng nhá»› dùng chung: %d\n" #: sys-utils/ipcmk.c:150 msgid "create message queue failed" -msgstr "" +msgstr "lá»—i tạo hà ng đợi thông Ä‘iệp" #: sys-utils/ipcmk.c:152 -#, fuzzy, c-format +#, c-format msgid "Message queue id: %d\n" -msgstr "" -"\n" -"msqid của hà ng đợi tin nhắn=%d\n" +msgstr "Mã số hà ng đợi thông Ä‘iệp: %d\n" #: sys-utils/ipcmk.c:158 -#, fuzzy msgid "create semaphore failed" -msgstr "đèn tÃn hiệu đã phân phối = %d\n" +msgstr "lá»—i tạo cá» hiệu" #: sys-utils/ipcmk.c:160 -#, fuzzy, c-format +#, c-format msgid "Semaphore id: %d\n" -msgstr "" -"\n" -"semid của dãy đèn tÃn hiệu=%d\n" +msgstr "Mã số cá» hiệu: %d\n" #: sys-utils/ipcrm.c:66 #, c-format @@ -10240,7 +10324,7 @@ msgstr "------ NgÆ°á»i tạo/Chủ sở hữu dãy đèn hiệu --------\n" #: sys-utils/ipcs.c:412 sys-utils/ipcs.c:418 sys-utils/ipcs.c:427 msgid "semid" -msgstr "semid" +msgstr "mã số cá» hiệu" #: sys-utils/ipcs.c:416 #, c-format @@ -10258,11 +10342,11 @@ msgstr "thay đổi cuối cùng" #: sys-utils/ipcs.c:425 #, c-format msgid "------ Semaphore Arrays --------\n" -msgstr "------ Dãy đèn tÃn hiệu --------\n" +msgstr "------ Dãy cá» hiệu --------\n" #: sys-utils/ipcs.c:427 msgid "nsems" -msgstr "nsems" +msgstr "số Ä‘oạn" #: sys-utils/ipcs.c:486 #, c-format @@ -10363,9 +10447,8 @@ msgid "messages" msgstr "tin nhắn" #: sys-utils/ipcs.c:593 -#, fuzzy msgid "shmctl failed" -msgstr "fsync bị lá»—i" +msgstr "shmctl bị lá»—i" #: sys-utils/ipcs.c:595 #, c-format @@ -10407,9 +10490,8 @@ msgid "change_time=%-26.24s\n" msgstr "change_time=%-26.24s\n" #: sys-utils/ipcs.c:619 -#, fuzzy msgid "msgctl failed" -msgstr "fsync bị lá»—i" +msgstr "msgctl bị lá»—i" #: sys-utils/ipcs.c:621 #, c-format @@ -10441,9 +10523,8 @@ msgid "rcv_time=%-26.24s\n" msgstr "rcv_time=%-26.24s\n" #: sys-utils/ipcs.c:652 sys-utils/ipcs.c:674 -#, fuzzy msgid "semctl failed" -msgstr "tìm nÆ¡i bị lá»—i" +msgstr "semctl bị lá»—i" #: sys-utils/ipcs.c:654 #, c-format @@ -10452,7 +10533,7 @@ msgid "" "Semaphore Array semid=%d\n" msgstr "" "\n" -"semid của dãy đèn tÃn hiệu=%d\n" +"semid của dãy cá» hiệu=%d\n" #: sys-utils/ipcs.c:655 #, c-format @@ -10564,48 +10645,44 @@ msgid "cannot daemonize" msgstr "không thể chạy trong ná»n" #: sys-utils/lscpu.c:64 -#, fuzzy msgid "none" -msgstr "Không" +msgstr "không" #: sys-utils/lscpu.c:65 msgid "para" -msgstr "" +msgstr "phần" #: sys-utils/lscpu.c:66 msgid "full" -msgstr "" +msgstr "đầy" -#: sys-utils/lscpu.c:129 sys-utils/lscpu.c:152 sys-utils/lscpu.c:431 -#, fuzzy, c-format +#: sys-utils/lscpu.c:129 sys-utils/lscpu.c:152 sys-utils/lscpu.c:441 +#, c-format msgid "error: %s" -msgstr "Lá»—i RE: " +msgstr "lá»—i: %s" #: sys-utils/lscpu.c:154 -#, fuzzy, c-format +#, c-format msgid "error parse: %s" -msgstr "lá»—i Ä‘á»c %s\n" +msgstr "phân tÃch lá»—i: %s" #: sys-utils/lscpu.c:176 -#, fuzzy msgid "error: strdup failed" -msgstr "lá»—i ghi và o đầu ra tiêu chuẩn" +msgstr "lá»—i: strdup không thà nh công" #: sys-utils/lscpu.c:259 -#, fuzzy msgid "error: uname failed" -msgstr "lá»—i: không phân tÃch được UUID" +msgstr "lá»—i: uname không thà nh công" -#: sys-utils/lscpu.c:481 -#, fuzzy +#: sys-utils/lscpu.c:491 msgid "error: malloc failed" -msgstr "malloc không thà nh công" +msgstr "lá»—i: malloc không thà nh công" -#: sys-utils/lscpu.c:496 +#: sys-utils/lscpu.c:506 msgid "error: /sys filesystem is not accessable." -msgstr "" +msgstr "lá»—i: hệ thống táºp tin « /sys » không thể truy cáºp được" -#: sys-utils/lscpu.c:514 +#: sys-utils/lscpu.c:524 #, c-format msgid "" "# The following is the parsable format, which can be fed to other\n" @@ -10613,67 +10690,71 @@ msgid "" "# starting from zero.\n" "# CPU,Core,Socket,Node" msgstr "" +"# Theo đây có định dạng có thể phân tÃch,\n" +"# mà có thể được gá»i cho chÆ°Æ¡ng trình khác.\n" +"# Má»—i mục riêng trong má»—i cá»™t có má»™t mã số duy nhất,\n" +"# bắt đầu từ số không.\n" +"# CPU,Lõi,á»”_cắm,Nút" -#: sys-utils/lscpu.c:580 +#: sys-utils/lscpu.c:590 msgid "Thread(s) per core:" -msgstr "" +msgstr "Mạch má»—i lõi:" -#: sys-utils/lscpu.c:581 +#: sys-utils/lscpu.c:591 msgid "Core(s) per socket:" -msgstr "" +msgstr "Lõi má»—i ổ cắm:" -#: sys-utils/lscpu.c:582 +#: sys-utils/lscpu.c:592 msgid "CPU socket(s):" -msgstr "" +msgstr "á»” cắm CPU:" -#: sys-utils/lscpu.c:586 +#: sys-utils/lscpu.c:596 msgid "NUMA node(s):" -msgstr "" +msgstr "Nút NUMA:" -#: sys-utils/lscpu.c:588 +#: sys-utils/lscpu.c:598 msgid "Vendor ID:" -msgstr "" +msgstr "Mã số nhà sản xuất:" -#: sys-utils/lscpu.c:590 +#: sys-utils/lscpu.c:600 msgid "CPU family:" -msgstr "" +msgstr "Nhóm CPU:" -#: sys-utils/lscpu.c:592 +#: sys-utils/lscpu.c:602 msgid "Model:" -msgstr "" +msgstr "Mô hình:" -#: sys-utils/lscpu.c:594 +#: sys-utils/lscpu.c:604 msgid "Stepping:" -msgstr "" +msgstr "Là m bÆ°á»›c:" -#: sys-utils/lscpu.c:596 +#: sys-utils/lscpu.c:606 msgid "CPU MHz:" -msgstr "" +msgstr "CPU MHz:" -#: sys-utils/lscpu.c:599 sys-utils/lscpu.c:601 -#, fuzzy +#: sys-utils/lscpu.c:609 sys-utils/lscpu.c:611 msgid "Virtualization:" -msgstr "Tình huống cÅ©:\n" +msgstr "Mô phá»ng:" -#: sys-utils/lscpu.c:604 +#: sys-utils/lscpu.c:614 msgid "Hypervisor vendor:" -msgstr "" +msgstr "Nhà sản xuất bá»™ mô phòng đồng thá»i:" -#: sys-utils/lscpu.c:605 +#: sys-utils/lscpu.c:615 msgid "Virtualization type:" -msgstr "" +msgstr "Kiểu mô phá»ng:" -#: sys-utils/lscpu.c:613 +#: sys-utils/lscpu.c:623 #, c-format msgid "%s cache:" -msgstr "" +msgstr "Vùng nhá»› tạm %s:" -#: sys-utils/lscpu.c:621 -#, fuzzy, c-format +#: sys-utils/lscpu.c:631 +#, c-format msgid "Usage: %s [option]\n" -msgstr "Sá» dụng: %s [tùy chá»n] thiết bị...\n" +msgstr "Sá» dụng: %s [tùy_chá»n]\n" -#: sys-utils/lscpu.c:624 +#: sys-utils/lscpu.c:634 msgid "" "CPU architecture information helper\n" "\n" @@ -10681,11 +10762,17 @@ msgid "" " -p, --parse print out in parsable instead of printable format.\n" " -s, --sysroot use the directory as a new system root.\n" msgstr "" +"Trình bổ trợ thông tin kiến trúc CPU\n" +"\n" +" -h, --help trợ giúp\n" +" -p, --parse in ra theo định dạng có thể phân tÃch thay cho định dạng in " +"được\n" +" -s, --sysroot dùng thÆ° mục là m gốc hệ thống má»›i\n" -#: sys-utils/lscpu.c:673 -#, fuzzy, c-format +#: sys-utils/lscpu.c:683 +#, c-format msgid "error: change working directory to %s." -msgstr "lá»—i thay đổi chế Ä‘á»™ của %s: %s\n" +msgstr "lá»—i: chuyển đổi thÆ° mục là m việc sang %s." #: sys-utils/rdev.c:77 msgid "usage: rdev [ -rv ] [ -o OFFSET ] [ IMAGE [ VALUE [ OFFSET ] ] ]" @@ -10821,7 +10908,7 @@ msgid "total" msgstr "tổng" #: sys-utils/renice.c:53 -#, fuzzy, c-format +#, c-format msgid "" "\n" "Usage:\n" @@ -10834,12 +10921,17 @@ msgid "" msgstr "" "\n" "Sá» dụng:\n" -" renice Æ°u_tiên [-p|--pid] pid [... pid]\n" -" renice Æ°u_tiên -g|--pgrp pgrp [... pgrp]\n" -" renice Æ°u_tiên -u|--user ngÆ°á»i_dùng [... ngÆ°á»i_dùng]\n" +" renice [-n] Æ°u_tiên [-p|--pid] pid [... pid]\n" +" renice [-n] Æ°u_tiên -g|--pgrp pgrp [... pgrp]\n" +" renice [-n] Æ°u_tiên -u|--user ngÆ°á»i_dùng [... ngÆ°á»i_dùng]\n" " renice -h | --help\n" " renice -v | --version\n" "\n" +"pid\t\tmã số tiến trình\n" +"pgrp\t\tnhóm chÆ°Æ¡ng trình\n" +"user\t\tngÆ°á»i dùng\n" +"help\t\ttrợ giúp\n" +"version\tphiên bản\n" #: sys-utils/renice.c:89 #, c-format @@ -11486,11 +11578,35 @@ msgid "" "See pg(1) for more information.\n" "-------------------------------------------------------\n" msgstr "" +"Bảo lÆ°u má»i quyá»n.\n" +"-------------------------------------------------------\n" +" h trợ giúp nà y\n" +" q hay Q thoát khá»i chÆ°Æ¡ng trình\n" +" <dòng_má»›i> trang kế tiếp\n" +" f nhảy tá»›i má»™t trang\n" +" d hay ^D ná»a trang kế tiếp\n" +" l dòng kế tiếp\n" +" $ trang cuối cùng\n" +" /biểu thức chÃnh quy/ quết tá»›i tìm chuá»—i nà y\n" +" ?biểu thức chÃnh quy? hay ^biểu thức chÃnh quy^ quét ngược tìm chuá»—i " +"nà y\n" +" . hay ^L vẽ lại mà n hình\n" +" w hay z đặt kÃch cỡ trang và đi tá»›i trang kế tiếp\n" +" s tên_táºp_tin lÆ°u táºp tin hiện thá»i và o tên táºp tin nà y\n" +" !câu_lệnh thoát và o trình bao\n" +" p Ä‘i vá» táºp tin trÆ°á»›c\n" +" n Ä‘i tá»›i táºp tin kế tiếp\n" +"\n" +"Nhiá»u câu lệnh cÅ©ng chấp nháºn số Ä‘i trÆ°á»›c, v.d.\n" +"+1<dòng_má»›i> (trang kế tiếp); -1<dòng_má»›i> (trang trÆ°á»›c); 1<dòng_má»›i> (trang " +"đầu).\n" +"\n" +"Xem pg(1) để tìm thêm thông tin.\n" +"-------------------------------------------------------\n" #: text-utils/pg.c:223 -#, fuzzy msgid "Out of memory\n" -msgstr "Trà n bá»™ nhá»›" +msgstr "Không đủ bá»™ nhá»›\n" #: text-utils/pg.c:236 #, c-format @@ -11638,71 +11754,4 @@ msgstr "Dòng nháºp và o quá dà i.\n" #: text-utils/ul.c:599 #, c-format msgid "Out of memory when growing buffer.\n" -msgstr "Trà n bá»™ nhá»› khi tăng vùng đệm.\n" - -#~ msgid "%s: error: label only with v1 swap area\n" -#~ msgstr "%s: lá»—i: chỉ ghi nhãn vá»›i vùng trao đổi v1\n" - -#~ msgid "fatal: first page unreadable" -#~ msgstr "lá»—i nặng: trang đầu tiên là không thể Ä‘á»c" - -#~ msgid "" -#~ "%s: Device '%s' contains a valid Sun disklabel.\n" -#~ "This probably means creating v0 swap would destroy your partition table.\n" -#~ "No swap was created. If you really want to create v0 swap on that " -#~ "device,\n" -#~ "use the -f option to force it.\n" -#~ msgstr "" -#~ "%s: thiết bị « %s » chứa má»™t nhãn Ä‘Ä©a Sun đúng.\n" -#~ "Äiá»u nà y có nghÄ©a việc tạo vùng trao đổi pb0\n" -#~ "sẽ hủy diệt bảng phân vùng của bạn.\n" -#~ "Váºy không tạo ra vùng trao đổi.\n" -#~ "Nếu bạn thá»±c sá»± muốn tạo vùng trao đổi pb0\n" -#~ "trên thiết bị đó, thì hãy dùng tùy chá»n « -f » để bắt buá»™c.\n" - -#~ msgid "namei: unable to get current directory - %s\n" -#~ msgstr "namei: không lấy được thÆ° mục hiện thá»i - %s\n" - -#~ msgid "namei: unable to chdir to %s - %s (%d)\n" -#~ msgstr "namei: không chdir (chuyển đổi thÆ° mục) được sang %s - %s (%d)\n" - -#~ msgid "namei: could not chdir to root!\n" -#~ msgstr "namei: không thể chdir (chuyển đổi thÆ° mục) sang root (gốc)!\n" - -#~ msgid "namei: could not stat root!\n" -#~ msgstr "namei: không thể lấy được trạng thái (stat) root!\n" - -#~ msgid "namei: buf overflow\n" -#~ msgstr "namei: còn trà n bá»™ đệm\n" - -#~ msgid " ? could not chdir into %s - %s (%d)\n" -#~ msgstr " ? không thể chdir (chuyển đổi thÆ° mục) sang %s - %s (%d)\n" - -#~ msgid " ? problems reading symlink %s - %s (%d)\n" -#~ msgstr " ? vấn Ä‘á» Ä‘á»c liên kết má»m %s - %s (%d)\n" - -#~ msgid " *** EXCEEDED UNIX LIMIT OF SYMLINKS ***\n" -#~ msgstr " *** VƯỢT QUà GIỚI HẠN LIÊN KẾT MỀM CỦA UNIX ***\n" - -#~ msgid "namei: unknown file type 0%06o on file %s\n" -#~ msgstr "namei: không rõ loại táºp tin 0%06o vá» táºp tin %s\n" - -#~ msgid "mount: going to mount %s by %s\n" -#~ msgstr "mount: chuẩn bị gắn %s theo %s\n" - -#~ msgid "mount: no LABEL=, no UUID=, going to mount %s by path\n" -#~ msgstr "" -#~ "mount: không có « LABEL= » (nhãn), cÅ©ng không có « UUID= » nên sắp gắn %s " -#~ "theo Ä‘Æ°á»ng dẫn\n" - -#~ msgid "%s: cannot fork: %s\n" -#~ msgstr "%s: không thể phân nhánh: %s\n" - -#~ msgid "%s: waitpid: %s\n" -#~ msgstr "%s: waitpid: %s\n" - -#~ msgid "%s: cannot stat %s: %s\n" -#~ msgstr "%s: không thể lấy trạng thái (stat) %s: %s\n" - -#~ msgid "could not umount %s - trying %s instead\n" -#~ msgstr "không bá» gắn được %s - Ä‘ang thá» %s để thay thế\n" +msgstr "Không đủ bá»™ nhá»› khi tăng vùng đệm.\n" diff --git a/po/zh_CN.po b/po/zh_CN.po index 4d15d7eb..6f924e44 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: util-linux-ng-2.14.1-rc2\n" "Report-Msgid-Bugs-To: Karel Zak <kzak@redhat.com>\n" -"POT-Creation-Date: 2009-04-29 15:34+0200\n" +"POT-Creation-Date: 2009-05-27 21:39+0200\n" "PO-Revision-Date: 2008-08-23 23:20+0800\n" "Last-Translator: Ray Wang <wanglei1123@gmail.com>\n" "Language-Team: Chinese (simplified) <translation-team-zh-cn@lists." @@ -7199,25 +7199,25 @@ msgstr "" msgid "%s: can't read temporary file.\n" msgstr "" -#: misc-utils/cal.c:355 misc-utils/cal.c:367 +#: misc-utils/cal.c:358 misc-utils/cal.c:370 #, c-format msgid "illegal day value: use 1-%d" msgstr "" -#: misc-utils/cal.c:359 +#: misc-utils/cal.c:362 msgid "illegal month value: use 1-12" msgstr "" -#: misc-utils/cal.c:363 +#: misc-utils/cal.c:366 msgid "illegal year value: use 1-9999" msgstr "" -#: misc-utils/cal.c:457 +#: misc-utils/cal.c:460 #, c-format msgid "%s %d" msgstr "" -#: misc-utils/cal.c:848 +#: misc-utils/cal.c:851 #, c-format msgid "usage: cal [-13smjyV] [[[day] month] year]\n" msgstr "" @@ -8809,50 +8809,50 @@ msgstr "" msgid "pid %d's %s scheduling policy: " msgstr "" -#: schedutils/chrt.c:108 +#: schedutils/chrt.c:112 #, c-format msgid "unknown\n" msgstr "" -#: schedutils/chrt.c:112 +#: schedutils/chrt.c:116 #, c-format msgid "failed to get pid %d's attributes" msgstr "" -#: schedutils/chrt.c:114 +#: schedutils/chrt.c:118 #, c-format msgid "pid %d's %s scheduling priority: %d\n" msgstr "" -#: schedutils/chrt.c:130 +#: schedutils/chrt.c:147 #, c-format msgid "SCHED_%s min/max priority\t: %d/%d\n" msgstr "" -#: schedutils/chrt.c:133 +#: schedutils/chrt.c:150 #, c-format msgid "SCHED_%s not supported?\n" msgstr "" -#: schedutils/chrt.c:185 +#: schedutils/chrt.c:206 #, fuzzy msgid "failed to parse pid" msgstr "ä¸èƒ½è¯» inodes" -#: schedutils/chrt.c:207 +#: schedutils/chrt.c:228 msgid "current" msgstr "" -#: schedutils/chrt.c:215 +#: schedutils/chrt.c:236 msgid "failed to parse priority" msgstr "" -#: schedutils/chrt.c:221 +#: schedutils/chrt.c:242 #, c-format msgid "failed to set pid %d's policy" msgstr "" -#: schedutils/chrt.c:230 +#: schedutils/chrt.c:251 #, c-format msgid "failed to execute %s" msgstr "" @@ -9819,7 +9819,7 @@ msgstr "" msgid "full" msgstr "" -#: sys-utils/lscpu.c:129 sys-utils/lscpu.c:152 sys-utils/lscpu.c:431 +#: sys-utils/lscpu.c:129 sys-utils/lscpu.c:152 sys-utils/lscpu.c:441 #, c-format msgid "error: %s" msgstr "" @@ -9838,15 +9838,15 @@ msgstr "" msgid "error: uname failed" msgstr "查找失败" -#: sys-utils/lscpu.c:481 +#: sys-utils/lscpu.c:491 msgid "error: malloc failed" msgstr "" -#: sys-utils/lscpu.c:496 +#: sys-utils/lscpu.c:506 msgid "error: /sys filesystem is not accessable." msgstr "" -#: sys-utils/lscpu.c:514 +#: sys-utils/lscpu.c:524 #, c-format msgid "" "# The following is the parsable format, which can be fed to other\n" @@ -9855,65 +9855,65 @@ msgid "" "# CPU,Core,Socket,Node" msgstr "" -#: sys-utils/lscpu.c:580 +#: sys-utils/lscpu.c:590 msgid "Thread(s) per core:" msgstr "" -#: sys-utils/lscpu.c:581 +#: sys-utils/lscpu.c:591 msgid "Core(s) per socket:" msgstr "" -#: sys-utils/lscpu.c:582 +#: sys-utils/lscpu.c:592 msgid "CPU socket(s):" msgstr "" -#: sys-utils/lscpu.c:586 +#: sys-utils/lscpu.c:596 msgid "NUMA node(s):" msgstr "" -#: sys-utils/lscpu.c:588 +#: sys-utils/lscpu.c:598 msgid "Vendor ID:" msgstr "" -#: sys-utils/lscpu.c:590 +#: sys-utils/lscpu.c:600 msgid "CPU family:" msgstr "" -#: sys-utils/lscpu.c:592 +#: sys-utils/lscpu.c:602 msgid "Model:" msgstr "" -#: sys-utils/lscpu.c:594 +#: sys-utils/lscpu.c:604 msgid "Stepping:" msgstr "" -#: sys-utils/lscpu.c:596 +#: sys-utils/lscpu.c:606 msgid "CPU MHz:" msgstr "" -#: sys-utils/lscpu.c:599 sys-utils/lscpu.c:601 +#: sys-utils/lscpu.c:609 sys-utils/lscpu.c:611 msgid "Virtualization:" msgstr "" -#: sys-utils/lscpu.c:604 +#: sys-utils/lscpu.c:614 msgid "Hypervisor vendor:" msgstr "" -#: sys-utils/lscpu.c:605 +#: sys-utils/lscpu.c:615 msgid "Virtualization type:" msgstr "" -#: sys-utils/lscpu.c:613 +#: sys-utils/lscpu.c:623 #, c-format msgid "%s cache:" msgstr "" -#: sys-utils/lscpu.c:621 +#: sys-utils/lscpu.c:631 #, fuzzy, c-format msgid "Usage: %s [option]\n" msgstr "用法: %s [ -n ] device\n" -#: sys-utils/lscpu.c:624 +#: sys-utils/lscpu.c:634 msgid "" "CPU architecture information helper\n" "\n" @@ -9922,7 +9922,7 @@ msgid "" " -s, --sysroot use the directory as a new system root.\n" msgstr "" -#: sys-utils/lscpu.c:673 +#: sys-utils/lscpu.c:683 #, c-format msgid "error: change working directory to %s." msgstr "" 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)); 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/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 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/blkid/images/mdraid.img.bz2 b/tests/ts/blkid/images/mdraid.img.bz2 Binary files differnew file mode 100644 index 00000000..d5a67a34 --- /dev/null +++ b/tests/ts/blkid/images/mdraid.img.bz2 diff --git a/tests/ts/lscpu/dumps/i386-amdshanghai.tar.gz b/tests/ts/lscpu/dumps/i386-amdshanghai.tar.gz Binary files differnew file mode 100644 index 00000000..199c22b3 --- /dev/null +++ b/tests/ts/lscpu/dumps/i386-amdshanghai.tar.gz 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 Binary files differnew file mode 100644 index 00000000..a18a7798 --- /dev/null +++ b/tests/ts/lscpu/dumps/i386-dellpe700.tar.gz 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 Binary files differnew file mode 100644 index 00000000..36c98115 --- /dev/null +++ b/tests/ts/lscpu/dumps/i386-intels5000phb.tar.gz 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/i386-xenpara/proc/bus/pci/devices b/tests/ts/lscpu/dumps/i386-xenpara/proc/bus/pci/devices deleted file mode 100644 index e69de29b..00000000 --- a/tests/ts/lscpu/dumps/i386-xenpara/proc/bus/pci/devices +++ /dev/null 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 --- a/tests/ts/lscpu/dumps/i386-xenpara/proc/xen/capabilities +++ /dev/null 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/ia64-hpmatterhorn.tar.gz b/tests/ts/lscpu/dumps/ia64-hpmatterhorn.tar.gz Binary files differnew file mode 100644 index 00000000..b5f15165 --- /dev/null +++ b/tests/ts/lscpu/dumps/ia64-hpmatterhorn.tar.gz 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 Binary files differnew file mode 100644 index 00000000..37bcb17d --- /dev/null +++ b/tests/ts/lscpu/dumps/ia64-hprx1620.tar.gz 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 Binary files differnew file mode 100644 index 00000000..f30d792d --- /dev/null +++ b/tests/ts/lscpu/dumps/ia64-pg0.tar.gz 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 Binary files differnew file mode 100644 index 00000000..89790b70 --- /dev/null +++ b/tests/ts/lscpu/dumps/x86_64-hpdl585.tar.gz 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 Binary files differnew file mode 100644 index 00000000..5aff52fd --- /dev/null +++ b/tests/ts/lscpu/dumps/x86_64-ibme326m.tar.gz 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 Binary files differnew file mode 100644 index 00000000..00ed35f5 --- /dev/null +++ b/tests/ts/lscpu/dumps/x86_64-necem14.tar.gz 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/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 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 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 <kzak@redhat.com> +# Copyright (C) 2008-2009 Karel Zak <kzak@redhat.com> # # 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 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 |