This file is indexed.

/usr/share/calc/test4600.cal is in apcalc-common 2.12.4.4-3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
/*
 * test4600 - 4600 series of the regress.cal test suite
 *
 * Copyright (C) 1999  Ernest Bowen and Landon Curt Noll
 *
 * Primary author:  Ernest Bowen
 *
 * Calc is open software; you can redistribute it and/or modify it under
 * the terms of the version 2.1 of the GNU Lesser General Public License
 * as published by the Free Software Foundation.
 *
 * Calc 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 Lesser General
 * Public License for more details.
 *
 * A copy of version 2.1 of the GNU Lesser General Public License is
 * distributed with calc under the filename COPYING-LGPL.  You should have
 * received a copy with calc; if not, write to Free Software Foundation, Inc.
 * 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 *
 * @(#) $Revision: 30.1 $
 * @(#) $Id: test4600.cal,v 30.1 2007/03/16 11:09:54 chongo Exp $
 * @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/test4600.cal,v $
 *
 * Under source code control:	1996/07/02 20:04:40
 * File existed as early as:	1996
 *
 * Share and enjoy!  :-)	http://www.isthe.com/chongo/tech/comp/calc/
 */


defaultverbose = 1;	/* default verbose value */

/*
 * test globals
 */
global A, f, pos;

define stest(str, verbose)
{
	local x;

	/* setup */
	if (isnull(verbose))
		verbose = defaultverbose;
	if (verbose > 0) {
		print str:":",:;
	}
	x = rm("-f", "junk4600");

	/*
	 * do file operations
	 */
	f = fopen("junk4600", "wb");
	if (iserror(f)) {
		print 'failed';
		print '**** fopen("junk4600", "wb") failed';
		return 1;
	}
	if (iserror(fputs(f,
	 "Fourscore and seven years ago our fathers brought forth\n",
	 "on this continent a new nation, conceived in liberty and dedicated\n",
	 "to the proposition that all men are created equal.\n"))) {
		print 'failed';
		print '**** fputs(f, "Fourscore ... failed';
		return 1;
	}
	if (iserror(freopen(f, "rb"))) {
		print 'failed';
		print '**** iserror(freopen(f, "rb")) failed';
		return 1;
	}
	if (iserror(rewind(f))) {
		print 'failed';
		print '**** iserror(rewind(f)) failed';
		return 1;
	}
	if (search(f, "and") != 10) {
		print 'failed';
		print '**** search(f, "and") != 10 failed';
		return 1;
	}
	if (ftell(f) != 13) {
		print 'failed';
		print '**** ftell(f) != 13 failed';
		return 1;
	}
	if (search(f, "and") != 109) {
		print 'failed';
		print '**** search(f, "and") != 109 failed';
		return 1;
	}
	if (ftell(f) != 112) {
		print 'failed';
		print '**** ftell(f) != 112 failed';
		return 1;
	}
	if (!isnull(search(f, "and"))) {
		print 'failed';
		print '**** !isnull(search(f, "and")) failed';
		return 1;
	}
	if (ftell(f) != 172) {
		print 'failed';
		print '**** ftell(f) != 172 failed';
		return 1;
	}
	if (rsearch(f, "and") != 109) {
		print 'failed';
		print '**** rsearch(f, "and") != 109 failed';
		return 1;
	}
	if (ftell(f) != 111) {
		print 'failed';
		print '**** ftell(f) != 111 failed';
		return 1;
	}
	if (iserror(fseek(f, -4, 1))) {
		print 'failed';
		print '**** iserror(fseek(f, -4, 1)) failed';
		return 1;
	}
	if (rsearch(f, "and") != 10) {
		print 'failed';
		print '**** rsearch(f, "and") != 10 failed';
		return 1;
	}
	if (ftell(f) != 12) {
		print 'failed';
		print '**** ftell(f) != 12 failed';
		return 1;
	}
	if (iserror(fseek(f, -4, 1))) {
		print 'failed';
		print '**** iserror(fseek(f, -4, 1)) failed';
		return 1;
	}
	if (!isnull(rsearch(f, "and"))) {
		print 'failed';
		print '**** !isnull(rsearch(f, "and")) failed';
		return 1;
	}
	if (ftell(f) != 0) {
		print 'failed';
		print '**** ftell(f) != 0 failed';
		return 1;
	}
	if (iserror(fclose(f))) {
		print 'failed';
		print '**** iserror(fclose(f)) failed';
		return 1;
	}

	/*
	 * cleanup
	 */
	x = rm("junk4600");
	if (verbose > 0) {
		printf("passed\n");
	}
	return 0;
}

define ttest(str, m, n, verbose)
{
	local a, s, i, j;

	if (isnull(verbose))
		verbose = defaultverbose;
	if (verbose > 0) {
		print str:":",:;
	}
	i = rm("-f", "junk4600");
	f = fopen("junk4600", "wb");

	if (isnull(n))
		n = 4;
	if (isnull(m))
		m = 4;

	mat A[m];
	mat pos[m + 1];

	pos[0] = 0;
	for (i = 0; i < m; i++) {
		j = 1 + randbit(n);
		a = "";
		while (j-- > 0)
			a = strcat(a, char(rand(32, 127)));
		A[i] = a;
		fputs(f, a);
		pos[i+1] = ftell(f);
		if (verbose > 1)
			printf("A[%d] has length %d\n", i, strlen(a));
	}
	fflush(f);
	if (verbose > 1)
		printf("File has size %d\n", pos[i]);
	freopen(f, "rb");
	if (size(f) != pos[i]) {
		print 'failed';
		printf("**** Failure 1 for file size\n");
		return 1;
	}
	for (i = 0; i < m; i++) {
		rewind(f);
		for (;;) {
			j = search(f, A[i]);
			if (isnull(j) || j > pos[i]) {
				print 'failed';
				printf("**** Failure 2 for i = %d\n", i);
				return 1;
			}
			if (j == pos[i])
				break;
			fseek(f, j + 1, 0);

		}
		if (ftell(f) != pos[i + 1]) {
			print 'failed';
			printf("**** Failure 3 for i = %d\n", i);
			return 1;
		}
	}
	for (i = m - 1; i >= 0; i--) {
		fseek(f, 0, 2);
		for (;;) {
			j = rsearch(f, A[i]);
			if (isnull(j) || j < pos[i]) {
				print 'failed';
				printf("**** Failure 4 for i = %d\n", i);
				return 1;
			}
			if (j == pos[i])
				break;
			fseek(f, -1, 1);
		}
		if (ftell(f) != pos[i + 1] - 1) {
			print 'failed';
			printf("**** Failure 5 for i = %d\n", i);
			return 1;
		}
	}
	if (iserror(fclose(f))) {
		print 'failed';
		printf("**** Failure 6 for i = %d\n", i);
		return 1;
	}
	i = rm("junk4600");
	if (verbose > 0) {
		printf("passed\n");
	}
	return 0;
}

define sprint(x)
{
	local i, n;

	n = strlen(x);
	for (i = 1; i <= n; i++) print ord(substr(x, i, 1)),;
	print;
}

define findline(f,s)
{

	if (!isfile(f))
		quit "First argument to be a file";
	if (!isstr(s))
		quit "Second argument to be a string";
	if (!isnull(search(f,s))) {
		rsearch(f, "\n");
		print fgetline(f);
	}
}

define findlineold(f,s)
{
	local str;

	if (!isfile(f))
		quit "First argument to be a file";
	if (!isstr(s))
		quit "Second argument to be a string";

	while (!isnull(str = fgetline(f)) && strpos(str, s) == 0);
		print str;
}

/*
 * test4600 - perform all of the above tests a bunch of times
 */
define test4600(v, tnum)
{
	local n;	/* test parameter */
	local i;

	/*
	 * set test parameters
	 */
	srand(4600e4600);

	/*
	 * test a lot of stuff
	 */
	for (i=0; i < 10; ++i) {
		err += ttest(strcat(str(tnum++),
			     ": ttest(",str(i),",",str(i),")"), i, i, v);
		err += stest(strcat(str(tnum++), ": stest()"), v);
	}

	/*
	 * report results
	 */
	if (v > 1) {
		if (err) {
			print "****", err, "error(s) found in testall";
		} else {
			print "no errors in testall";
		}
	}
	return tnum;
}