On Tue, 17 Mar 2015 15:21:29 +1100 Michael Ellerman <m...@ellerman.id.au> wrote:
> From: Greg Kurz <gk...@linux.vnet.ibm.com> > > The goal is to verify vphn_unpack_associativity() parses VPHN numbers > correctly. We feed it with a variety of input values and compare with > expected results. > > PAPR+ does not say much about VPHN parsing: I came up with a list of > tests that check many simple cases and some corner ones. I wouldn't > dare to say the list is exhaustive though. > > Signed-off-by: Greg Kurz <gk...@linux.vnet.ibm.com> > [mpe: Rework harness logic and rename to test-vphn] > Signed-off-by: Michael Ellerman <m...@ellerman.id.au> > --- > > I reworked this a little bit, let me know if it looks OK to you. > > I renamed the test to test-vphn, and I changed the test loop to only call the > harness once, but report all the individual test results as well. > I guess it is safe to assume we don't have an infinite loop bug hidding in each individual test case. I am okay with the changes. I don't know if it is needed but here's my: Reviewed-by: Greg Kurz <gk...@linux.vnet.ibm.com> > > tools/testing/selftests/powerpc/Makefile | 2 +- > tools/testing/selftests/powerpc/utils.h | 1 + > tools/testing/selftests/powerpc/vphn/.gitignore | 1 + > tools/testing/selftests/powerpc/vphn/Makefile | 13 + > tools/testing/selftests/powerpc/vphn/test-vphn.c | 410 > +++++++++++++++++++++++ > tools/testing/selftests/powerpc/vphn/vphn.c | 1 + > tools/testing/selftests/powerpc/vphn/vphn.h | 1 + > 7 files changed, 428 insertions(+), 1 deletion(-) > create mode 100644 tools/testing/selftests/powerpc/vphn/.gitignore > create mode 100644 tools/testing/selftests/powerpc/vphn/Makefile > create mode 100644 tools/testing/selftests/powerpc/vphn/test-vphn.c > create mode 120000 tools/testing/selftests/powerpc/vphn/vphn.c > create mode 120000 tools/testing/selftests/powerpc/vphn/vphn.h > > diff --git a/tools/testing/selftests/powerpc/Makefile > b/tools/testing/selftests/powerpc/Makefile > index 1d5e7ad2c460..476b8dd9275f 100644 > --- a/tools/testing/selftests/powerpc/Makefile > +++ b/tools/testing/selftests/powerpc/Makefile > @@ -13,7 +13,7 @@ CFLAGS := -Wall -O2 -flto -Wall -Werror > -DGIT_VERSION='"$(GIT_VERSION)"' -I$(CUR > > export CC CFLAGS > > -TARGETS = pmu copyloops mm tm primitives stringloops > +TARGETS = pmu copyloops mm tm primitives stringloops vphn > > endif > > diff --git a/tools/testing/selftests/powerpc/utils.h > b/tools/testing/selftests/powerpc/utils.h > index a93777ae0684..2ec455e37792 100644 > --- a/tools/testing/selftests/powerpc/utils.h > +++ b/tools/testing/selftests/powerpc/utils.h > @@ -15,6 +15,7 @@ typedef signed long long s64; > > /* Just for familiarity */ > typedef uint32_t u32; > +typedef uint16_t u16; > typedef uint8_t u8; > > > diff --git a/tools/testing/selftests/powerpc/vphn/.gitignore > b/tools/testing/selftests/powerpc/vphn/.gitignore > new file mode 100644 > index 000000000000..dd3039a0f638 > --- /dev/null > +++ b/tools/testing/selftests/powerpc/vphn/.gitignore > @@ -0,0 +1 @@ > +parse-vphn > diff --git a/tools/testing/selftests/powerpc/vphn/Makefile > b/tools/testing/selftests/powerpc/vphn/Makefile > new file mode 100644 > index 000000000000..4bce3ca9d140 > --- /dev/null > +++ b/tools/testing/selftests/powerpc/vphn/Makefile > @@ -0,0 +1,13 @@ > +PROG := test-vphn > + > +all: $(PROG) > + > +$(PROG): ../harness.c > + > +run_tests: all > + ./$(PROG) > + > +clean: > + rm -f $(PROG) > + > +.PHONY: all run_tests clean > diff --git a/tools/testing/selftests/powerpc/vphn/test-vphn.c > b/tools/testing/selftests/powerpc/vphn/test-vphn.c > new file mode 100644 > index 000000000000..5742f6876b25 > --- /dev/null > +++ b/tools/testing/selftests/powerpc/vphn/test-vphn.c > @@ -0,0 +1,410 @@ > +#include <stdio.h> > +#include <byteswap.h> > +#include "utils.h" > +#include "subunit.h" > + > +#if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__ > +#define cpu_to_be32(x) bswap_32(x) > +#define be32_to_cpu(x) bswap_32(x) > +#define be16_to_cpup(x) bswap_16(*x) > +#define cpu_to_be64(x) bswap_64(x) > +#else > +#define cpu_to_be32(x) (x) > +#define be32_to_cpu(x) (x) > +#define be16_to_cpup(x) (*x) > +#define cpu_to_be64(x) (x) > +#endif > + > +#include "vphn.c" > + > +static struct test { > + char *descr; > + long input[VPHN_REGISTER_COUNT]; > + u32 expected[VPHN_ASSOC_BUFSIZE]; > +} all_tests[] = { > + { > + "vphn: no data", > + { > + 0xffffffffffffffff, > + 0xffffffffffffffff, > + 0xffffffffffffffff, > + 0xffffffffffffffff, > + 0xffffffffffffffff, > + 0xffffffffffffffff, > + }, > + { > + 0x00000000 > + } > + }, > + { > + "vphn: 1 x 16-bit value", > + { > + 0x8001ffffffffffff, > + 0xffffffffffffffff, > + 0xffffffffffffffff, > + 0xffffffffffffffff, > + 0xffffffffffffffff, > + 0xffffffffffffffff, > + }, > + { > + 0x00000001, > + 0x00000001 > + } > + }, > + { > + "vphn: 2 x 16-bit values", > + { > + 0x80018002ffffffff, > + 0xffffffffffffffff, > + 0xffffffffffffffff, > + 0xffffffffffffffff, > + 0xffffffffffffffff, > + 0xffffffffffffffff, > + }, > + { > + 0x00000002, > + 0x00000001, > + 0x00000002 > + } > + }, > + { > + "vphn: 3 x 16-bit values", > + { > + 0x800180028003ffff, > + 0xffffffffffffffff, > + 0xffffffffffffffff, > + 0xffffffffffffffff, > + 0xffffffffffffffff, > + 0xffffffffffffffff, > + }, > + { > + 0x00000003, > + 0x00000001, > + 0x00000002, > + 0x00000003 > + } > + }, > + { > + "vphn: 4 x 16-bit values", > + { > + 0x8001800280038004, > + 0xffffffffffffffff, > + 0xffffffffffffffff, > + 0xffffffffffffffff, > + 0xffffffffffffffff, > + 0xffffffffffffffff, > + }, > + { > + 0x00000004, > + 0x00000001, > + 0x00000002, > + 0x00000003, > + 0x00000004 > + } > + }, > + { > + /* Parsing the next 16-bit value out of the next 64-bit input > + * value. > + */ > + "vphn: 5 x 16-bit values", > + { > + 0x8001800280038004, > + 0x8005ffffffffffff, > + 0xffffffffffffffff, > + 0xffffffffffffffff, > + 0xffffffffffffffff, > + 0xffffffffffffffff, > + }, > + { > + 0x00000005, > + 0x00000001, > + 0x00000002, > + 0x00000003, > + 0x00000004, > + 0x00000005 > + } > + }, > + { > + /* Parse at most 6 x 64-bit input values */ > + "vphn: 24 x 16-bit values", > + { > + 0x8001800280038004, > + 0x8005800680078008, > + 0x8009800a800b800c, > + 0x800d800e800f8010, > + 0x8011801280138014, > + 0x8015801680178018 > + }, > + { > + 0x00000018, > + 0x00000001, > + 0x00000002, > + 0x00000003, > + 0x00000004, > + 0x00000005, > + 0x00000006, > + 0x00000007, > + 0x00000008, > + 0x00000009, > + 0x0000000a, > + 0x0000000b, > + 0x0000000c, > + 0x0000000d, > + 0x0000000e, > + 0x0000000f, > + 0x00000010, > + 0x00000011, > + 0x00000012, > + 0x00000013, > + 0x00000014, > + 0x00000015, > + 0x00000016, > + 0x00000017, > + 0x00000018 > + } > + }, > + { > + "vphn: 1 x 32-bit value", > + { > + 0x00000001ffffffff, > + 0xffffffffffffffff, > + 0xffffffffffffffff, > + 0xffffffffffffffff, > + 0xffffffffffffffff, > + 0xffffffffffffffff > + }, > + { > + 0x00000001, > + 0x00000001 > + } > + }, > + { > + "vphn: 2 x 32-bit values", > + { > + 0x0000000100000002, > + 0xffffffffffffffff, > + 0xffffffffffffffff, > + 0xffffffffffffffff, > + 0xffffffffffffffff, > + 0xffffffffffffffff > + }, > + { > + 0x00000002, > + 0x00000001, > + 0x00000002 > + } > + }, > + { > + /* Parsing the next 32-bit value out of the next 64-bit input > + * value. > + */ > + "vphn: 3 x 32-bit values", > + { > + 0x0000000100000002, > + 0x00000003ffffffff, > + 0xffffffffffffffff, > + 0xffffffffffffffff, > + 0xffffffffffffffff, > + 0xffffffffffffffff > + }, > + { > + 0x00000003, > + 0x00000001, > + 0x00000002, > + 0x00000003 > + } > + }, > + { > + /* Parse at most 6 x 64-bit input values */ > + "vphn: 12 x 32-bit values", > + { > + 0x0000000100000002, > + 0x0000000300000004, > + 0x0000000500000006, > + 0x0000000700000008, > + 0x000000090000000a, > + 0x0000000b0000000c > + }, > + { > + 0x0000000c, > + 0x00000001, > + 0x00000002, > + 0x00000003, > + 0x00000004, > + 0x00000005, > + 0x00000006, > + 0x00000007, > + 0x00000008, > + 0x00000009, > + 0x0000000a, > + 0x0000000b, > + 0x0000000c > + } > + }, > + { > + "vphn: 16-bit value followed by 32-bit value", > + { > + 0x800100000002ffff, > + 0xffffffffffffffff, > + 0xffffffffffffffff, > + 0xffffffffffffffff, > + 0xffffffffffffffff, > + 0xffffffffffffffff > + }, > + { > + 0x00000002, > + 0x00000001, > + 0x00000002 > + } > + }, > + { > + "vphn: 32-bit value followed by 16-bit value", > + { > + 0x000000018002ffff, > + 0xffffffffffffffff, > + 0xffffffffffffffff, > + 0xffffffffffffffff, > + 0xffffffffffffffff, > + 0xffffffffffffffff > + }, > + { > + 0x00000002, > + 0x00000001, > + 0x00000002 > + } > + }, > + { > + /* Parse a 32-bit value split accross two consecutives 64-bit > + * input values. > + */ > + "vphn: 16-bit value followed by 2 x 32-bit values", > + { > + 0x8001000000020000, > + 0x0003ffffffffffff, > + 0xffffffffffffffff, > + 0xffffffffffffffff, > + 0xffffffffffffffff, > + 0xffffffffffffffff > + }, > + { > + 0x00000003, > + 0x00000001, > + 0x00000002, > + 0x00000003, > + 0x00000004, > + 0x00000005 > + } > + }, > + { > + /* The lower bits in 0x0001ffff don't get mixed up with the > + * 0xffff terminator. > + */ > + "vphn: 32-bit value has all ones in 16 lower bits", > + { > + 0x0001ffff80028003, > + 0xffffffffffffffff, > + 0xffffffffffffffff, > + 0xffffffffffffffff, > + 0xffffffffffffffff, > + 0xffffffffffffffff > + }, > + { > + 0x00000003, > + 0x0001ffff, > + 0x00000002, > + 0x00000003 > + } > + }, > + { > + /* The following input doesn't follow the specification. > + */ > + "vphn: last 32-bit value is truncated", > + { > + 0x0000000100000002, > + 0x0000000300000004, > + 0x0000000500000006, > + 0x0000000700000008, > + 0x000000090000000a, > + 0x0000000b800c2bad > + }, > + { > + 0x0000000c, > + 0x00000001, > + 0x00000002, > + 0x00000003, > + 0x00000004, > + 0x00000005, > + 0x00000006, > + 0x00000007, > + 0x00000008, > + 0x00000009, > + 0x0000000a, > + 0x0000000b, > + 0x0000000c > + } > + }, > + { > + "vphn: garbage after terminator", > + { > + 0xffff2bad2bad2bad, > + 0x2bad2bad2bad2bad, > + 0x2bad2bad2bad2bad, > + 0x2bad2bad2bad2bad, > + 0x2bad2bad2bad2bad, > + 0x2bad2bad2bad2bad > + }, > + { > + 0x00000000 > + } > + }, > + { > + NULL > + } > +}; > + > +static int test_one(struct test *test) > +{ > + __be32 output[VPHN_ASSOC_BUFSIZE] = { 0 }; > + int i, len; > + > + vphn_unpack_associativity(test->input, output); > + > + len = be32_to_cpu(output[0]); > + if (len != test->expected[0]) { > + printf("expected %d elements, got %d\n", test->expected[0], > + len); > + return 1; > + } > + > + for (i = 1; i < len; i++) { > + u32 val = be32_to_cpu(output[i]); > + if (val != test->expected[i]) { > + printf("element #%d is 0x%x, should be 0x%x\n", i, val, > + test->expected[i]); > + return 1; > + } > + } > + > + return 0; > +} > + > +static int test_vphn(void) > +{ > + static struct test *test; > + > + for (test = all_tests; test->descr; test++) { > + int ret; > + > + ret = test_one(test); > + test_finish(test->descr, ret); > + if (ret) > + return ret; > + } > + > + return 0; > +} > + > +int main(int argc, char **argv) > +{ > + return test_harness(test_vphn, "test-vphn"); > +} > diff --git a/tools/testing/selftests/powerpc/vphn/vphn.c > b/tools/testing/selftests/powerpc/vphn/vphn.c > new file mode 120000 > index 000000000000..186b906e66d5 > --- /dev/null > +++ b/tools/testing/selftests/powerpc/vphn/vphn.c > @@ -0,0 +1 @@ > +../../../../../arch/powerpc/mm/vphn.c > \ No newline at end of file > diff --git a/tools/testing/selftests/powerpc/vphn/vphn.h > b/tools/testing/selftests/powerpc/vphn/vphn.h > new file mode 120000 > index 000000000000..7131efe38c65 > --- /dev/null > +++ b/tools/testing/selftests/powerpc/vphn/vphn.h > @@ -0,0 +1 @@ > +../../../../../arch/powerpc/mm/vphn.h > \ No newline at end of file _______________________________________________ Linuxppc-dev mailing list Linuxppc-dev@lists.ozlabs.org https://lists.ozlabs.org/listinfo/linuxppc-dev