diff options
author | H. Peter Anvin <hpa@zytor.com> | 2008-08-28 17:48:34 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2008-08-28 17:48:34 -0700 |
commit | 3ba3af3290cfb3abb029bb3fc71590ebd090f459 (patch) | |
tree | 588710d853b2cb4aed1b38d24d23f6aed797346d /test | |
parent | 962e30519cf128a7e2b78068ca8e697c6737b7a1 (diff) | |
download | nasm-3ba3af3290cfb3abb029bb3fc71590ebd090f459.tar.gz nasm-3ba3af3290cfb3abb029bb3fc71590ebd090f459.tar.bz2 nasm-3ba3af3290cfb3abb029bb3fc71590ebd090f459.zip |
Testcase for XCRYPT
Diffstat (limited to 'test')
-rw-r--r-- | test/xcrypt.asm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/test/xcrypt.asm b/test/xcrypt.asm new file mode 100644 index 0000000..59f0dca --- /dev/null +++ b/test/xcrypt.asm @@ -0,0 +1,24 @@ +;Testname=test; Arguments=-fbin -oxcrypt.bin; Files=.stdout .stderr xcrypt.bin +; BR 2029829 + + bits 32 + + rep xstore + rep xcryptecb + rep xcryptcbc + rep xcryptctr + rep xcryptcfb + rep xcryptofb + rep montmul + rep xsha1 + rep xsha256 + + xstore + xcryptecb + xcryptcbc + xcryptctr + xcryptcfb + xcryptofb + montmul + xsha1 + xsha256 |