Remove a bunch of old test files from /usr/share

This commit is contained in:
Kevin Lange 2016-12-23 12:42:58 +09:00
parent 6847a96823
commit 153571098d
9 changed files with 0 additions and 390 deletions

View File

@ -1,10 +0,0 @@
hey=yeah
[sectiona]
foo=bar
baz=qix
[sectionb]
; this is a comment
lol=butts

View File

@ -1,4 +0,0 @@
\ /\
) ( ')
( / )
\(__)|

View File

@ -1,39 +0,0 @@
a4805c38                 8561
a37f5b37                 8460
a27e5a36                 835f3b3c3d3e6286aaa9a8a7
a17d5935                 896541424344688cb0afaead
a07c5834101112131415395d81a5c9c8c7c6c5c4 8f6b4748494a6e92b6b5b4b3
a6825e3a161718191a1b3f6387abcfcecdcccbca 95714d4e4f507498bcbbbab9
ac8864401c1d1e1f202145698db1d5d4d3d2d1d0       7397
b28e6a462223242526274b6f93b7dbdad9d8d7d6       7296
b894704c28292a2b2c2d517599bde1e0dfdedddc 66678b8a
be9a76522e2f30313233577b9fc3e7e6e5e4e3e2 6c6d9190
          567a9ec2
          55799dc1
0001020304050607  54789cc0       f3f2f1f0efeeedecebeae9e8
08090a0b0c0d0e0f  53779bbf       f4f5f6f7f8f9fafbfcfdfeff
f4f5f6f7f8f9fafbfcfdfeff   59 a1     678b8a
f3f2f1f0efeeedecebeae9e8  365a7ea2c6   6c6d91
              375b7fa3c7cdd3 66 90      6084a8
     7d 35      385c80a4c8ced4          6185a9af
  c5c4a07c5834101112131415395d81a5c9cfd5   a7835f3b3c3d3e6286aab0
 cccbcaa6825e3a161718191a1b3f6387ab     aead896541424344688c
d8d2d1d0ac8864401c1d1e1f202145698db1     b4b38f6b4748494a6e92
de d7d6b28e6a462223242526274b6f93b7db    b5 95714d  50 98
  dddcb894704c28292a2b2c2d517599bde1    b6 96724e  74 97
  e3e2be9a76522e2f30313233577b9fc3e7    bc ba    73 bb
  e4 bf9b7753      567a  e6      b9    4f
  e5 c09c7854      5579  e0
  df c1          9d  da   0001020304050607
  d9 c2          9e      08090a0b0c0d0e0f
101112131415395d81a5c9c8c7c6c5c4a07c583435597da1a2a3a4805c38375b7f7e5a36
161718191a1b3f6387abcfcecdcccbcaa6825e3a3b5f83a7a8a9aa86623e3d618584603c
1c1d1e1f202145698db1d5d4d3d2d1d0ac886440416589adaeafb08c684443678b8a6642
2223242526274b6f93b7dbdad9d8d7d6b28e6a46476b8fb3b4b5b6926e4a496d91906c48
28292a2b2c2d517599bde1e0dfdedddcb894704c4d7195b9babbbc9874504f739796724e
2e2f30313233577b9fc3e7e6e5e4e3e2be9a765253779bbfc0c1c29e7a5655799d9c7854

0001020304050607 e8e9eaebecedeeeff0f1f2f3f4f5f6f7f8f9fafbfcfdfeff
08090a0b0c0d0e0f

View File

@ -1,3 +0,0 @@
This file is in Unicode.
このファイルはユニコードであります。
Cool, eh?

View File

@ -1,4 +0,0 @@
kitty: 😹
🌎 🍔 🍗 🍔🍐 🍌 🍕
pizza: 🍕 -

View File

@ -1,287 +0,0 @@
/* libmath.b for GNU bc. */
/* This file is part of GNU bc.
Copyright (C) 1991, 1992, 1993, 1997 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License , or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; see the file COPYING. If not, write to
The Free Software Foundation, Inc.
59 Temple Place, Suite 330
Boston, MA 02111 USA
You may contact the author by:
e-mail: philnelson@acm.org
us-mail: Philip A. Nelson
Computer Science Department, 9062
Western Washington University
Bellingham, WA 98226-9062
*************************************************************************/
scale = 20
/* Uses the fact that e^x = (e^(x/2))^2
When x is small enough, we use the series:
e^x = 1 + x + x^2/2! + x^3/3! + ...
*/
define e(x) {
auto a, d, e, f, i, m, n, v, z
/* a - holds x^y of x^y/y! */
/* d - holds y! */
/* e - is the value x^y/y! */
/* v - is the sum of the e's */
/* f - number of times x was divided by 2. */
/* m - is 1 if x was minus. */
/* i - iteration count. */
/* n - the scale to compute the sum. */
/* z - orignal scale. */
/* Check the sign of x. */
if (x<0) {
m = 1
x = -x
}
/* Precondition x. */
z = scale;
n = 6 + z + .44*x;
scale = scale(x)+1;
while (x > 1) {
f += 1;
x /= 2;
scale += 1;
}
/* Initialize the variables. */
scale = n;
v = 1+x
a = x
d = 1
for (i=2; 1; i++) {
e = (a *= x) / (d *= i)
if (e == 0) {
if (f>0) while (f--) v = v*v;
scale = z
if (m) return (1/v);
return (v/1);
}
v += e
}
}
/* Natural log. Uses the fact that ln(x^2) = 2*ln(x)
The series used is:
ln(x) = 2(a+a^3/3+a^5/5+...) where a=(x-1)/(x+1)
*/
define l(x) {
auto e, f, i, m, n, v, z
/* return something for the special case. */
if (x <= 0) return ((1 - 10^scale)/1)
/* Precondition x to make .5 < x < 2.0. */
z = scale;
scale = 6 + scale;
f = 2;
i=0
while (x >= 2) { /* for large numbers */
f *= 2;
x = sqrt(x);
}
while (x <= .5) { /* for small numbers */
f *= 2;
x = sqrt(x);
}
/* Set up the loop. */
v = n = (x-1)/(x+1)
m = n*n
/* Sum the series. */
for (i=3; 1; i+=2) {
e = (n *= m) / i
if (e == 0) {
v = f*v
scale = z
return (v/1)
}
v += e
}
}
/* Sin(x) uses the standard series:
sin(x) = x - x^3/3! + x^5/5! - x^7/7! ... */
define s(x) {
auto e, i, m, n, s, v, z
/* precondition x. */
z = scale
scale = 1.1*z + 2;
v = a(1)
if (x < 0) {
m = 1;
x = -x;
}
scale = 0
n = (x / v + 2 )/4
x = x - 4*n*v
if (n%2) x = -x
/* Do the loop. */
scale = z + 2;
v = e = x
s = -x*x
for (i=3; 1; i+=2) {
e *= s/(i*(i-1))
if (e == 0) {
scale = z
if (m) return (-v/1);
return (v/1);
}
v += e
}
}
/* Cosine : cos(x) = sin(x+pi/2) */
define c(x) {
auto v, z;
z = scale;
scale = scale*1.2;
v = s(x+a(1)*2);
scale = z;
return (v/1);
}
/* Arctan: Using the formula:
atan(x) = atan(c) + atan((x-c)/(1+xc)) for a small c (.2 here)
For under .2, use the series:
atan(x) = x - x^3/3 + x^5/5 - x^7/7 + ... */
define a(x) {
auto a, e, f, i, m, n, s, v, z
/* a is the value of a(.2) if it is needed. */
/* f is the value to multiply by a in the return. */
/* e is the value of the current term in the series. */
/* v is the accumulated value of the series. */
/* m is 1 or -1 depending on x (-x -> -1). results are divided by m. */
/* i is the denominator value for series element. */
/* n is the numerator value for the series element. */
/* s is -x*x. */
/* z is the saved user's scale. */
/* Negative x? */
m = 1;
if (x<0) {
m = -1;
x = -x;
}
/* Special case and for fast answers */
if (x==1) {
if (scale <= 25) return (.7853981633974483096156608/m)
if (scale <= 40) return (.7853981633974483096156608458198757210492/m)
if (scale <= 60) \
return (.785398163397448309615660845819875721049292349843776455243736/m)
}
if (x==.2) {
if (scale <= 25) return (.1973955598498807583700497/m)
if (scale <= 40) return (.1973955598498807583700497651947902934475/m)
if (scale <= 60) \
return (.197395559849880758370049765194790293447585103787852101517688/m)
}
/* Save the scale. */
z = scale;
/* Note: a and f are known to be zero due to being auto vars. */
/* Calculate atan of a known number. */
if (x > .2) {
scale = z+5;
a = a(.2);
}
/* Precondition x. */
scale = z+3;
while (x > .2) {
f += 1;
x = (x-.2) / (1+x*.2);
}
/* Initialize the series. */
v = n = x;
s = -x*x;
/* Calculate the series. */
for (i=3; 1; i+=2) {
e = (n *= s) / i;
if (e == 0) {
scale = z;
return ((f*a+v)/m);
}
v += e
}
}
/* Bessel function of integer order. Uses the following:
j(-n,x) = (-1)^n*j(n,x)
j(n,x) = x^n/(2^n*n!) * (1 - x^2/(2^2*1!*(n+1)) + x^4/(2^4*2!*(n+1)*(n+2))
- x^6/(2^6*3!*(n+1)*(n+2)*(n+3)) .... )
*/
define j(n,x) {
auto a, b, d, e, f, i, m, s, v, z
/* Make n an integer and check for negative n. */
z = scale;
scale = 0;
n = n/1;
if (n<0) {
n = -n;
if (n%2 == 1) m = 1;
}
/* save ibase */
b = ibase;
ibase = A;
/* Compute the factor of x^n/(2^n*n!) */
f = 1;
for (i=2; i<=n; i++) f = f*i;
scale = 1.5*z;
f = x^n / 2^n / f;
/* Initialize the loop .*/
v = e = 1;
s = -x*x/4
scale = 1.5*z + length(f) - scale(f);
/* The Loop.... */
for (i=1; 1; i++) {
e = e * s / i / (n+i);
if (e == 0) {
ibase = b;
scale = z
if (m) return (-f*v/1);
return (f*v/1);
}
v += e;
}
}

View File

@ -1,29 +0,0 @@
 ______________________________________________________ 
/ I have no idea what Rainbow Dash would say, but hey, \
\ ponies. /
 ------------------------------------------------------ 
\ 
\ 
\ ▄▄▄▄▄▄▄▄▄ ▄ 
▀█▄██▄▄██▄▄█▄▄▄██ 
▄▄▄███▄▄███▄▄██▄██ █▄█ ▄▄ 
▄▀███▄▄██▄▄▄███████████▄██ 
███▄▄▄▄▄█████████▀█████▄▀ 
██▄▀██▄███▄████████████▄▄▄▄ 
▀▀▀ █▄███▄████▄█▄██▄███████ 
█▄█▄█▄▄▄▄▄█▄▄████▄████▄▄▄▄▄▄▄▄▄▄▄ 
▀▄▄█████████▄█▄█▄█▄█▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ 
▀▀▀█▄▄▄▄█▄███▄██▄▄▄▄▄▄▄▄▄██▄█▄█▄▀ 
███▄███████▄██▄▄▄▄▀▀▄█▄█▄███▄██ 
███████▄▄██▄▄███ ████████▄██ 
██████████▄█▄▄███ ██▄██████▄█▄ 
████▄▄███▄▄▄▄███ █▀██████████ 
▄▄███▄██▄▄▄███ ████████▄██ 
█▄████▀▀▄▄▄▄█▄▄▄ ▀▄▀▄██████▀▄ 
██████ ██▄▄███ ▀ ▀▄▄███▄▄ 
███████ ██████▄▄ ▀▄██▄█▄▄ 
▄▄██████ ████████ ▀▀▀▀▀▀▀
█▄███████ ███████▄▄ 
▀▀█▄███▄▀ ▀▀▀██████ 
▀▀▀▀▀▀ ▀▀▀▀▀▀ 


View File

@ -1,13 +0,0 @@
POSIXポジックス、パーズィックス、Portable Operating System Interfaceとは、各種UNIX OSを始めとする異なるOS実装に共通のAPIを定め、移植性の高いアプリケーションソフトウェアの開発を容易にすることを目的としてIEEEが策定したアプリケーションインタフェース規格である。POSIXという名前はリチャード・ストールマンがIEEEに提案したものである[1]。末尾の「X」はUNIX互換OSにXがつく名前が多いことからつけられた。ISO/IEC JTC 1/SC 22でISO/IEC 9945として国際規格になっている。
規格の内容はカーネルへのC言語のインタフェースであるシステムコールに留まらず、プロセス環境、ファイルとディレクトリ、システムデータベースパスワードファイルなど、tarのアーカイブフォーマットなど多岐にわたる。ただし、単にPOSIXといった場合は、システムコールとライブラリ関数を規定したPOSIX.1 (IEEE Std 1003.1) を指す。
C言語のシステムコールとライブラリ関数を規定した有力な規格としては、他にANSI/ISO CとSUSSingle UNIX Specification、XPG4の後継があるが、各規格の立場の違いにより、これらが含む関数の種類には差がある。集合の記号で表すと、ANSI/ISO C ⊂ POSIX.1 ⊂ SUS となる。
UNIX系OS以外でも、Microsoft Windows NT系はPOSIX 1.0に準拠しているPOSIXサブシステムを搭載しており、POSIXアプリケーションをそのサブシステム上で実行できる。WTO/TBT協定では、非関税障壁として工業製品は国際規格を尊重して仕様を規定することを提唱しているため、米国政府機関のコンピュータシステム導入要件FIPSでPOSIX準拠であること規定したためである。Windows 2000までPOSIXサブシステムを搭載していたが、Windows XPからはServices for UNIXに同梱のInterixサブシステムに役割を譲り、Windows Server 2003 R2やWindows VistaからはSubsystem for UNIX-based ApplicationsSUAとなった。
Linuxの国際標準を制定するにあたり、LinuxとPOSIXの差に関するTRを作成している。
最初の規格のテストスイートはアメリカ国立標準技術研究所 (NIST) が POSIX Test Suite (POSIX 1990 version) としてオープンソースで提供している。
- Wikipedia contributors. POSIX. Wikipedia. August 6, 2012, 12:52 UTC. Available at: http://ja.wikipedia.org/w/index.php?title=POSIX&oldid=43639394. Accessed September 6, 2012.

View File

@ -1 +0,0 @@