comparison scripts/test/factor.test @ 1410:ee0109c35b34 draft

Add factor. I was reading http://www.muppetlabs.com/~breadbox/txt/rsa.html and it mentioned "factor" and I noticed it was in coreutils. I'm not sure why it's in coreutils, but it's pretty trivial, so...
author Rob Landley <rob@landley.net>
date Fri, 01 Aug 2014 09:08:00 -0500
parents
children
comparison
equal deleted inserted replaced
1409:f477dc852d3b 1410:ee0109c35b34
1 #!/bin/bash
2
3 [ -f testing.sh ] && . testing.sh
4
5 #testing "name" "command" "result" "infile" "stdin"
6
7 testing "factor -32" "factor -32" "-32: -1 2 2 2 2 2\n" "" ""
8 testing "factor 0" "factor 0" "0: 0\n" "" ""
9 testing "factor 1" "factor 1" "1: 1\n" "" ""
10 testing "factor 2" "factor 2" "2: 2\n" "" ""
11 testing "factor 3" "factor 3" "3: 3\n" "" ""
12 testing "factor 4" "factor 4" "4: 2 2\n" "" ""
13 testing "factor 10000000017" "factor 10000000017" \
14 "10000000017: 3 3 3 7 7 7 1079797\n" "" ""
15 testing "factor 10000000018" "factor 10000000018" \
16 "10000000018: 2 131 521 73259\n" "" ""
17 testing "factor 10000000019" "factor 10000000019" \
18 "10000000019: 10000000019\n" "" ""