Raymond Toy pushed to branch issue-373-handle-temp-files at cmucl / cmucl
Commits:
-
67cb15e6
by Raymond Toy at 2025-02-15T15:34:50+00:00
-
38da65c4
by Raymond Toy at 2025-02-15T15:34:50+00:00
-
03081eeb
by Raymond Toy at 2025-02-17T01:52:03+00:00
-
ee669070
by Raymond Toy at 2025-02-17T01:52:04+00:00
-
459c91bc
by Raymond Toy at 2025-02-18T02:53:23+00:00
-
daf83c84
by Raymond Toy at 2025-02-18T02:53:23+00:00
-
b7ca3635
by Raymond Toy at 2025-02-17T18:55:33-08:00
7 changed files:
- src/code/commandline.lisp
- src/code/unix.lisp
- src/general-info/release-21f.md
- src/i18n/locale/cmucl-unix.pot
- src/i18n/locale/cmucl.pot
- src/lisp/lisp.c
- tests/unix.lisp
Changes:
... | ... | @@ -109,7 +109,13 @@ |
109 | 109 | (return (setf *command-line-switches*
|
110 | 110 | (nreverse *command-line-switches*))))
|
111 | 111 | (let* ((position (position #\= (the simple-string str) :test #'char=))
|
112 | - (switch (subseq (the simple-string str) 1 position))
|
|
112 | + ;; Extract the name of the switch. The actual arg can be
|
|
113 | + ;; "-switch" or "--switch".
|
|
114 | + (switch (subseq (the simple-string str)
|
|
115 | + (position-if-not #'(lambda (c)
|
|
116 | + (char= c #\-))
|
|
117 | + str)
|
|
118 | + position))
|
|
113 | 119 | (value (if position
|
114 | 120 | (subseq (the simple-string str) (1+ position)
|
115 | 121 | (length (the simple-string str))))))
|
... | ... | @@ -143,7 +149,14 @@ |
143 | 149 | the switch. If no value was specified, then any following words are
|
144 | 150 | returned. If there are no following words, then t is returned. If
|
145 | 151 | the switch was not specified, then nil is returned."
|
146 | - (let* ((name (if (char= (schar sname 0) #\-) (subseq sname 1) sname))
|
|
152 | + (let* ((posn (position-if-not #'(lambda (ch)
|
|
153 | + (char= ch #\-))
|
|
154 | + sname))
|
|
155 | + ;; Strip up to 2 leading "-" to get the switch name.
|
|
156 | + ;; Otherwise, return the entire switch name.
|
|
157 | + (name (if (and posn (<= posn 2))
|
|
158 | + (subseq sname posn)
|
|
159 | + sname))
|
|
147 | 160 | (switch (find name *command-line-switches*
|
148 | 161 | :test #'string-equal
|
149 | 162 | :key #'cmd-switch-name)))
|
... | ... | @@ -177,17 +190,17 @@ |
177 | 190 | (demons *command-switch-demons*))
|
178 | 191 | (flet ((invoke-demon (switch)
|
179 | 192 | (let* ((name (cmd-switch-name switch))
|
180 | - (demon (cdr (assoc name demons :test #'string-equal))))
|
|
193 | + (demon (cdr (assoc name demons :test #'string=))))
|
|
181 | 194 | (cond (demon (funcall demon switch))
|
182 | - ((or (member name *legal-cmd-line-switches* :test #'string-equal :key #'car)
|
|
195 | + ((or (member name *legal-cmd-line-switches* :test #'string= :key #'car)
|
|
183 | 196 | (not *complain-about-illegal-switches*)))
|
184 | 197 | (t (warn (intl:gettext "~S is an illegal switch") switch)))
|
185 | 198 | (lisp::finish-standard-output-streams))))
|
186 | 199 | ;; We want to process -help (or --help) first, if it's given.
|
187 | 200 | ;; Since we're asking for help, we don't want to process any of
|
188 | 201 | ;; the other switches.
|
189 | - (let ((maybe-help (or (find "help" switches :key #'cmd-switch-name :test #'string-equal)
|
|
190 | - (find "-help" switches :key #'cmd-switch-name :test #'string-equal))))
|
|
202 | + (let ((maybe-help (or (find "help" switches :key #'cmd-switch-name :test #'string=)
|
|
203 | + (find "-help" switches :key #'cmd-switch-name :test #'string=))))
|
|
191 | 204 | (if maybe-help
|
192 | 205 | (invoke-demon maybe-help)
|
193 | 206 | (dolist (switch switches t)
|
... | ... | @@ -230,12 +243,12 @@ |
230 | 243 | (lisp::finish-standard-output-streams)
|
231 | 244 | (setf start next)))))
|
232 | 245 | |
233 | -;; Docstrings should have lines longer than 72 characters so that we
|
|
234 | -;; can print out the docstrings nicely on one line for help.
|
|
235 | -;; | <-- char 72
|
|
246 | +;; Docstrings MUST consist of simple text and punctuation and
|
|
247 | +;; newlines; no special markup is allowed. When help is printed, the
|
|
248 | +;; help string is automatically filled and wrapped to 80 columns.
|
|
236 | 249 | (defswitch "eval" #'eval-switch-demon
|
237 | 250 | "Evaluate the specified Lisp expression during the start up
|
238 | - sequence. the value of the form will not be printed unless it is
|
|
251 | + sequence. The value of the form will not be printed unless it is
|
|
239 | 252 | wrapped in a form that does output."
|
240 | 253 | "expression")
|
241 | 254 | |
... | ... | @@ -325,7 +338,7 @@ |
325 | 338 | |
326 | 339 | (defswitch "quiet" nil
|
327 | 340 | "Causes Lisp to start up silently, disabling printing of the herald
|
328 | - and causing most unnecessary noise, like GC messages,load messages,
|
|
341 | + and causing most unnecessary noise, like GC messages, load messages,
|
|
329 | 342 | etc. to be suppressed.")
|
330 | 343 | |
331 | 344 | (defswitch "debug-lisp-search" nil
|
... | ... | @@ -338,7 +351,8 @@ |
338 | 351 | |
339 | 352 | (defun help-switch-demon (switch)
|
340 | 353 | (declare (ignore switch))
|
341 | - (format t (intl:gettext "~&Usage: ~A <options>~2%") *command-line-utility-name*)
|
|
354 | + (format t (intl:gettext "~&Usage: ~A <options> [-- [app-args]*]~2%")
|
|
355 | + *command-line-utility-name*)
|
|
342 | 356 | (flet
|
343 | 357 | ((get-words (s)
|
344 | 358 | (declare (string s))
|
... | ... | @@ -366,7 +380,12 @@ |
366 | 380 | :key #'car))
|
367 | 381 | (destructuring-bind (name doc arg)
|
368 | 382 | s
|
369 | - (format t " -~A ~@[~A~]~%" name (if arg (intl:gettext arg)))
|
|
383 | + ;; Print both -switch and --switch, and the optional arg
|
|
384 | + ;; value.
|
|
385 | + (format t " -~A|--~A ~@[~A~]~%"
|
|
386 | + name name
|
|
387 | + (if arg (intl:gettext arg)))
|
|
388 | + |
|
370 | 389 | ;; Poor man's formatting of the help string
|
371 | 390 | (let ((*print-right-margin* 80))
|
372 | 391 | ;; Extract all the words from the string and print them out
|
... | ... | @@ -392,9 +411,6 @@ |
392 | 411 | (defswitch "help" #'help-switch-demon
|
393 | 412 | "Print out the command line options and exit")
|
394 | 413 | |
395 | -(defswitch "-help" #'help-switch-demon
|
|
396 | - "Same as -help.")
|
|
397 | - |
|
398 | 414 | (defun version-switch-demon (switch)
|
399 | 415 | (declare (ignore switch))
|
400 | 416 | (format t "~A~%" (lisp-implementation-version))
|
... | ... | @@ -406,8 +422,3 @@ |
406 | 422 | ;; it out so the user knows about it.
|
407 | 423 | (defswitch "version" #'version-switch-demon
|
408 | 424 | "Prints the cmucl version and exits, without loading the lisp core.") |
409 | - |
|
410 | -;; Make --version work for the benefit of those who are accustomed to
|
|
411 | -;; GNU software.
|
|
412 | -(defswitch "-version" #'version-switch-demon
|
|
413 | - "Prints the cmucl version and exits; same as -version") |
... | ... | @@ -2921,8 +2921,10 @@ |
2921 | 2921 | (with-alien ((buffer (* c-call:unsigned-char)))
|
2922 | 2922 | (setf buffer (make-alien c-call:unsigned-char (1+ length)))
|
2923 | 2923 | ;; Copy the octets from OCTETS to the null-terminated array BUFFER.
|
2924 | - (dotimes (k length)
|
|
2925 | - (setf (deref buffer k) (aref octets k)))
|
|
2924 | + (system:without-gcing
|
|
2925 | + (kernel:system-area-copy (vector-sap octets) 0
|
|
2926 | + (alien-sap buffer) 0
|
|
2927 | + (* length vm:byte-bits)))
|
|
2926 | 2928 | (setf (deref buffer length) 0)
|
2927 | 2929 | |
2928 | 2930 | (syscall ("mkstemp" (* c-call:char))
|
... | ... | @@ -2930,8 +2932,10 @@ |
2930 | 2932 | (progn
|
2931 | 2933 | ;; Copy out the alien bytes and convert back
|
2932 | 2934 | ;; to a lisp string.
|
2933 | - (dotimes (k length)
|
|
2934 | - (setf (aref octets k) (deref buffer k)))
|
|
2935 | + (system:without-gcing
|
|
2936 | + (kernel:system-area-copy (alien-sap buffer) 0
|
|
2937 | + (vector-sap octets) 0
|
|
2938 | + (* length vm:byte-bits)))
|
|
2935 | 2939 | (stream:octets-to-string octets
|
2936 | 2940 | :external-format format)))
|
2937 | 2941 | (cast buffer (* c-call:char))))))
|
... | ... | @@ -2955,8 +2959,12 @@ |
2955 | 2959 | (with-alien ((buffer (* c-call:unsigned-char)))
|
2956 | 2960 | (setf buffer (make-alien c-call:unsigned-char (1+ length)))
|
2957 | 2961 | ;; Copy the octets from OCTETS to the null-terminated array BUFFER.
|
2958 | - (dotimes (k length)
|
|
2959 | - (setf (deref buffer k) (aref octets k)))
|
|
2962 | + (system:without-gcing
|
|
2963 | + (kernel:system-area-copy (vector-sap octets) 0
|
|
2964 | + (alien-sap buffer) 0
|
|
2965 | + (* length vm:byte-bits)))
|
|
2966 | + (setf (deref buffer length) 0)
|
|
2967 | + |
|
2960 | 2968 | (let ((result (alien-funcall
|
2961 | 2969 | (extern-alien "mkdtemp"
|
2962 | 2970 | (function (* char)
|
... | ... | @@ -119,6 +119,7 @@ public domain. |
119 | 119 | * ~~#364~~ Add interface to `mkdtemp` and `mkstemp`
|
120 | 120 | * ~~#367~~ Add stream:string-count-octets to count octets in a string
|
121 | 121 | * ~~#369~~ Improve docstring for `unix::unix-setlocale`
|
122 | + * ~~#379~~ Support GNU-style command-line option names
|
|
122 | 123 | * Other changes:
|
123 | 124 | * Improvements to the PCL implementation of CLOS:
|
124 | 125 | * Changes to building procedure:
|
... | ... | @@ -1440,16 +1440,17 @@ msgstr "" |
1440 | 1440 | msgid ""
|
1441 | 1441 | "Generates a unique temporary file name from TEMPLATE, and creates\n"
|
1442 | 1442 | " and opens the file. On success, the corresponding file descriptor\n"
|
1443 | -" and name of the file is returned.\n"
|
|
1444 | -"\n"
|
|
1445 | -" The last six characters of the template must be \"XXXXXX\"."
|
|
1443 | +" and name of the file is returned. Otherwise, NIL and the UNIX error\n"
|
|
1444 | +" code is returned."
|
|
1446 | 1445 | msgstr ""
|
1447 | 1446 | |
1448 | 1447 | #: src/code/unix.lisp
|
1449 | 1448 | msgid ""
|
1450 | -"Generate a uniquely named temporary directory from Template,\n"
|
|
1451 | -" which must have \"XXXXXX\" as the last six characters. The\n"
|
|
1449 | +"Generate a uniquely named temporary directory from Template. The\n"
|
|
1452 | 1450 | " directory is created with permissions 0700. The name of the\n"
|
1453 | -" directory is returned."
|
|
1451 | +" directory is returned.\n"
|
|
1452 | +"\n"
|
|
1453 | +" If the directory cannot be created NIL and the UNIX error code is\n"
|
|
1454 | +" returned."
|
|
1454 | 1455 | msgstr ""
|
1455 | 1456 |
... | ... | @@ -6060,7 +6060,7 @@ msgstr "" |
6060 | 6060 | #: src/code/commandline.lisp
|
6061 | 6061 | msgid ""
|
6062 | 6062 | "Evaluate the specified Lisp expression during the start up\n"
|
6063 | -" sequence. the value of the form will not be printed unless it is\n"
|
|
6063 | +" sequence. The value of the form will not be printed unless it is\n"
|
|
6064 | 6064 | " wrapped in a form that does output."
|
6065 | 6065 | msgstr ""
|
6066 | 6066 | |
... | ... | @@ -6182,7 +6182,7 @@ msgstr "" |
6182 | 6182 | #: src/code/commandline.lisp
|
6183 | 6183 | msgid ""
|
6184 | 6184 | "Causes Lisp to start up silently, disabling printing of the herald\n"
|
6185 | -" and causing most unnecessary noise, like GC messages,load messages,\n"
|
|
6185 | +" and causing most unnecessary noise, like GC messages, load messages,\n"
|
|
6186 | 6186 | " etc. to be suppressed."
|
6187 | 6187 | msgstr ""
|
6188 | 6188 | |
... | ... | @@ -6197,25 +6197,17 @@ msgid "Specify the unidata.bin file to be used." |
6197 | 6197 | msgstr ""
|
6198 | 6198 | |
6199 | 6199 | #: src/code/commandline.lisp
|
6200 | -msgid "~&Usage: ~A <options>~2%"
|
|
6200 | +msgid "~&Usage: ~A <options> [-- [app-args]*]~2%"
|
|
6201 | 6201 | msgstr ""
|
6202 | 6202 | |
6203 | 6203 | #: src/code/commandline.lisp
|
6204 | 6204 | msgid "Print out the command line options and exit"
|
6205 | 6205 | msgstr ""
|
6206 | 6206 | |
6207 | -#: src/code/commandline.lisp
|
|
6208 | -msgid "Same as -help."
|
|
6209 | -msgstr ""
|
|
6210 | - |
|
6211 | 6207 | #: src/code/commandline.lisp
|
6212 | 6208 | msgid "Prints the cmucl version and exits, without loading the lisp core."
|
6213 | 6209 | msgstr ""
|
6214 | 6210 | |
6215 | -#: src/code/commandline.lisp
|
|
6216 | -msgid "Prints the cmucl version and exits; same as -version"
|
|
6217 | -msgstr ""
|
|
6218 | - |
|
6219 | 6211 | #: src/code/env-access.lisp
|
6220 | 6212 | msgid ""
|
6221 | 6213 | "Returns information about the symbol VAR in the lexical environment ENV.\n"
|
... | ... | @@ -460,6 +460,41 @@ core_failure(const char* core, const char* argv[]) |
460 | 460 | exit(1);
|
461 | 461 | }
|
462 | 462 | |
463 | +/*
|
|
464 | + * Match the actual command line option "arg" with the arg name in
|
|
465 | + * "argname". The option matches if it is exacty the arg name
|
|
466 | + * prefixed by either one or two "-" characters.
|
|
467 | + *
|
|
468 | + * Returns non-zero if it matches.
|
|
469 | + */
|
|
470 | +int match_option(const char* arg, const char* argname)
|
|
471 | +{
|
|
472 | + if ((strlen(arg) < 2) || strlen(argname) < 1) {
|
|
473 | + /*
|
|
474 | + * The actual arg must be at least 2 characters. The argname
|
|
475 | + * must have at least 1.
|
|
476 | + */
|
|
477 | + return 0;
|
|
478 | + }
|
|
479 | + |
|
480 | + /* Must start with a "-" */
|
|
481 | + if (arg[0] != '-') {
|
|
482 | + return 0;
|
|
483 | + }
|
|
484 | + |
|
485 | + if (strcmp(arg + 1, argname) == 0) {
|
|
486 | + /* We have "-" followed by the argname. That's a match. */
|
|
487 | + return 1;
|
|
488 | + }
|
|
489 | +
|
|
490 | + if ((arg[1] == '-') && (strcmp(arg + 2, argname) == 0)) {
|
|
491 | + /* We have "--" followed by the argname. That's a match. */
|
|
492 | + return 1;
|
|
493 | + }
|
|
494 | + |
|
495 | + return 0;
|
|
496 | +}
|
|
497 | +
|
|
463 | 498 | int
|
464 | 499 | main(int argc, const char *argv[], const char *envp[])
|
465 | 500 | {
|
... | ... | @@ -529,7 +564,7 @@ main(int argc, const char *argv[], const char *envp[]) |
529 | 564 | |
530 | 565 | argptr = argv;
|
531 | 566 | while ((arg = *++argptr) != NULL) {
|
532 | - if (strcmp(arg, "-core") == 0) {
|
|
567 | + if (match_option(arg, "core")) {
|
|
533 | 568 | if (builtin_image_flag) {
|
534 | 569 | fprintf(stderr,
|
535 | 570 | "Warning: specifying a core file with an executable image is unusual,\nbut should work.\n");
|
... | ... | @@ -543,87 +578,98 @@ main(int argc, const char *argv[], const char *envp[]) |
543 | 578 | core = *++argptr;
|
544 | 579 | if (core == NULL) {
|
545 | 580 | fprintf(stderr,
|
546 | - "-core must be followed by the name of the core file to use.\n");
|
|
581 | + "%s must be followed by the name of the core file to use.\n",
|
|
582 | + arg);
|
|
547 | 583 | exit(1);
|
548 | 584 | }
|
549 | - } else if (strcmp(arg, "-lib") == 0) {
|
|
585 | + } else if (match_option(arg, "lib")) {
|
|
550 | 586 | lib = *++argptr;
|
551 | 587 | if (lib == NULL) {
|
552 | 588 | fprintf(stderr,
|
553 | - "-lib must be followed by a string denoting the CMUCL library path.\n");
|
|
589 | + "%s must be followed by a string denoting the CMUCL library path.\n",
|
|
590 | + arg);
|
|
554 | 591 | exit(1);
|
555 | 592 | }
|
556 | - } else if (strcmp(arg, "-read-only-space-size") == 0) {
|
|
593 | + } else if (match_option(arg, "read-only-space-size")) {
|
|
557 | 594 | const char *str = *++argptr;
|
558 | 595 | |
559 | 596 | if (str == NULL) {
|
560 | 597 | fprintf(stderr,
|
561 | - "-read-only-space-size must be followed by the size in MBytes.\n");
|
|
598 | + "%s must be followed by the size in MBytes.\n",
|
|
599 | + arg);
|
|
562 | 600 | exit(1);
|
563 | 601 | }
|
564 | 602 | read_only_space_size = atoi(str) * 1024 * 1024;
|
565 | 603 | if (read_only_space_size > READ_ONLY_SPACE_SIZE) {
|
566 | 604 | fprintf(stderr,
|
567 | - "-read-only-space-size must be no greater than %lu MBytes.\n",
|
|
605 | + "%s must be no greater than %lu MBytes.\n",
|
|
606 | + arg,
|
|
568 | 607 | READ_ONLY_SPACE_SIZE / (1024 * 1024UL));
|
569 | 608 | fprintf(stderr, " Continuing with default size.\n");
|
570 | 609 | read_only_space_size = READ_ONLY_SPACE_SIZE;
|
571 | 610 | }
|
572 | - } else if (strcmp(arg, "-static-space-size") == 0) {
|
|
611 | + } else if (match_option(arg, "static-space-size")) {
|
|
573 | 612 | const char *str = *++argptr;
|
574 | 613 | |
575 | 614 | if (str == NULL) {
|
576 | 615 | fprintf(stderr,
|
577 | - "-static-space-size must be followed by the size in MBytes.\n");
|
|
616 | + "%s must be followed by the size in MBytes.\n",
|
|
617 | + arg);
|
|
578 | 618 | exit(1);
|
579 | 619 | }
|
580 | 620 | static_space_size = atoi(str) * 1024 * 1024;
|
581 | 621 | if (static_space_size > STATIC_SPACE_SIZE) {
|
582 | 622 | fprintf(stderr,
|
583 | - "-static-space-size must be no greater than %lu MBytes.\n",
|
|
623 | + "%s must be no greater than %lu MBytes.\n",
|
|
624 | + arg,
|
|
584 | 625 | STATIC_SPACE_SIZE / (1024 * 1024UL));
|
585 | 626 | fprintf(stderr, " Continuing with default size.\n");
|
586 | 627 | static_space_size = STATIC_SPACE_SIZE;
|
587 | 628 | }
|
588 | - } else if (strcmp(arg, "-binding-stack-size") == 0) {
|
|
629 | + } else if (match_option(arg, "binding-stack-size")) {
|
|
589 | 630 | const char *str = *++argptr;
|
590 | 631 | |
591 | 632 | if (str == NULL) {
|
592 | 633 | fprintf(stderr,
|
593 | - "-binding-stack-size must be followed by the size in MBytes.\n");
|
|
634 | + "%s must be followed by the size in MBytes.\n",
|
|
635 | + arg);
|
|
594 | 636 | exit(1);
|
595 | 637 | }
|
596 | 638 | binding_stack_size = atoi(str) * 1024 * 1024;
|
597 | 639 | if (binding_stack_size > BINDING_STACK_SIZE) {
|
598 | 640 | fprintf(stderr,
|
599 | - "-binding-stack-size must be no greater than %lu MBytes.\n",
|
|
641 | + "%s must be no greater than %lu MBytes.\n",
|
|
642 | + arg,
|
|
600 | 643 | BINDING_STACK_SIZE / (1024 * 1024UL));
|
601 | 644 | fprintf(stderr, " Continuing with default size.\n");
|
602 | 645 | binding_stack_size = BINDING_STACK_SIZE;
|
603 | 646 | }
|
604 | - } else if (strcmp(arg, "-control-stack-size") == 0) {
|
|
647 | + } else if (match_option(arg, "control-stack-size")) {
|
|
605 | 648 | const char *str = *++argptr;
|
606 | 649 | |
607 | 650 | if (str == NULL) {
|
608 | 651 | fprintf(stderr,
|
609 | - "-control-stack-size must be followed by the size in MBytes.\n");
|
|
652 | + "%s must be followed by the size in MBytes.\n",
|
|
653 | + arg);
|
|
610 | 654 | exit(1);
|
611 | 655 | }
|
612 | 656 | control_stack_size = atoi(str) * 1024 * 1024;
|
613 | 657 | if (control_stack_size > CONTROL_STACK_SIZE) {
|
614 | 658 | fprintf(stderr,
|
615 | - "-control-stack-size must be no greater than %lu MBytes.\n",
|
|
659 | + "%s must be no greater than %lu MBytes.\n",
|
|
660 | + arg,
|
|
616 | 661 | CONTROL_STACK_SIZE / (1024 * 1024UL));
|
617 | 662 | fprintf(stderr, " Continuing with default size.\n");
|
618 | 663 | control_stack_size = CONTROL_STACK_SIZE;
|
619 | 664 | }
|
620 | - } else if (strcmp(arg, "-dynamic-space-size") == 0) {
|
|
665 | + } else if (match_option(arg, "dynamic-space-size")) {
|
|
621 | 666 | const char *str;
|
622 | 667 | |
623 | 668 | str = *++argptr;
|
624 | 669 | if (str == NULL) {
|
625 | 670 | fprintf(stderr,
|
626 | - "-dynamic-space-size must be followed by the size to use in MBytes.\n");
|
|
671 | + "%s must be followed by the size to use in MBytes.\n",
|
|
672 | + arg);
|
|
627 | 673 | exit(1);
|
628 | 674 | }
|
629 | 675 | #ifndef sparc
|
... | ... | @@ -669,15 +715,16 @@ main(int argc, const char *argv[], const char *envp[]) |
669 | 715 | #endif
|
670 | 716 | if (dynamic_space_size > DYNAMIC_SPACE_SIZE) {
|
671 | 717 | fprintf(stderr,
|
672 | - "-dynamic-space-size must be no greater than %lu MBytes.\n",
|
|
718 | + "%s must be no greater than %lu MBytes.\n",
|
|
719 | + arg,
|
|
673 | 720 | DYNAMIC_SPACE_SIZE / (1024 * 1024UL));
|
674 | 721 | exit(1);
|
675 | 722 | }
|
676 | - } else if (strcmp(arg, "-monitor") == 0) {
|
|
723 | + } else if (match_option(arg, "monitor")) {
|
|
677 | 724 | monitor = TRUE;
|
678 | - } else if (strcmp(arg, "-debug-lisp-search") == 0) {
|
|
725 | + } else if (match_option(arg, "debug-lisp-search")) {
|
|
679 | 726 | debug_lisp_search = TRUE;
|
680 | - } else if (strcmp(arg, "-unidata") == 0) {
|
|
727 | + } else if (match_option(arg, "unidata")) {
|
|
681 | 728 | unidata = *++argptr;
|
682 | 729 | } else if ((strcmp(arg, "-version") == 0) ||
|
683 | 730 | (strcmp(arg, "--version") == 0)) {
|
... | ... | @@ -904,7 +951,7 @@ main(int argc, const char *argv[], const char *envp[]) |
904 | 951 | |
905 | 952 | argptr = argv;
|
906 | 953 | while ((arg = *++argptr) != NULL) {
|
907 | - if (strcmp(arg, "-batch") == 0)
|
|
954 | + if (match_option(arg, "batch"))
|
|
908 | 955 | SetSymbolValue(BATCH_MODE, T);
|
909 | 956 | }
|
910 | 957 |
... | ... | @@ -7,6 +7,7 @@ |
7 | 7 | |
8 | 8 | (define-test mkstemp.name-returned
|
9 | 9 | (:tag :issues)
|
10 | +<<<<<<< HEAD
|
|
10 | 11 | (let (fd name)
|
11 | 12 | (unwind-protect
|
12 | 13 | (progn
|
... | ... | @@ -18,6 +19,22 @@ |
18 | 19 | (unix:unix-unlink name)))))
|
19 | 20 | |
20 | 21 | (define-test mkstemp.name-returned.2
|
22 | +=======
|
|
23 | + (let (fd filename)
|
|
24 | + (unwind-protect
|
|
25 | + (progn
|
|
26 | + (let ((template "test-XXXXXX"))
|
|
27 | + (multiple-value-setq (fd filename)
|
|
28 | + (unix::unix-mkstemp (copy-seq template)))
|
|
29 | + (assert-true fd)
|
|
30 | + (assert-true (equalp (length filename) (length template)))
|
|
31 | + (assert-false (equalp filename template))
|
|
32 | + (assert-true (>= 5 (mismatch filename template))))))
|
|
33 | + (when fd
|
|
34 | + (unix:unix-unlink filename)))))
|
|
35 | + |
|
36 | +(define-test mkstemp.non-ascii-name-returned
|
|
37 | +>>>>>>> master
|
|
21 | 38 | (:tag :issues)
|
22 | 39 | (let ((unix::*filename-encoding* :utf-8)
|
23 | 40 | fd name)
|
... | ... | @@ -47,28 +64,6 @@ |
47 | 64 | (assert-false fd)
|
48 | 65 | (assert-true (and (integerp errno) (plusp errno)))))
|
49 | 66 | |
50 | -;; Darwin accepts this template. It creates the file "test-".
|
|
51 | -#-darwin
|
|
52 | -(define-test mkstemp.bad-template
|
|
53 | - (:tag :issues)
|
|
54 | - (multiple-value-bind (fd errno)
|
|
55 | - (unix::unix-mkstemp "test-")
|
|
56 | - ;; The template doesn't have enough X's so the FD should be NIL,
|
|
57 | - ;; and a positive Unix errno value should be returned.
|
|
58 | - (assert-false fd)
|
|
59 | - (assert-true (and (integerp errno) (plusp errno)))))
|
|
60 | - |
|
61 | -;; Darwin accepts this template and just creates the file
|
|
62 | -;; "test-XXXXXXa". (The next call would return an error.)
|
|
63 | -#-darwin
|
|
64 | -(define-test mkstemp.bad-template.2
|
|
65 | - (:tag :issues)
|
|
66 | - (multiple-value-bind (fd errno)
|
|
67 | - (unix::unix-mkstemp "test-XXXXXXa")
|
|
68 | - ;; The template doesn't end in X's
|
|
69 | - (assert-false fd)
|
|
70 | - (assert-true (and (integerp errno) (plusp errno)))))
|
|
71 | - |
|
72 | 67 | (define-test mkdtemp.name-returned
|
73 | 68 | (:tag :issues)
|
74 | 69 | (let (name)
|
... | ... | @@ -106,23 +101,3 @@ |
106 | 101 | (unix::unix-mkdtemp "random-dir/dir-XXXXXX")
|
107 | 102 | (assert-false result)
|
108 | 103 | (assert-true (and (integerp errno) (plusp errno))))) |
109 | - |
|
110 | -;; Darwin allows any number of X's.
|
|
111 | -#-darwin
|
|
112 | -(define-test mkdtemp.bad-template
|
|
113 | - (:tag :issues)
|
|
114 | - (multiple-value-bind (result errno)
|
|
115 | - (unix::unix-mkdtemp "dir-")
|
|
116 | - ;; No X's in template, like for mkstemp.bad-template test.
|
|
117 | - (assert-false result)
|
|
118 | - (assert-true (and (integerp errno) (plusp errno)))))
|
|
119 | - |
|
120 | -;; Same issue with mkdtemp as with mkstemp above on Darwin.
|
|
121 | -#-darwin
|
|
122 | -(define-test mkdtemp.bad-template.2
|
|
123 | - (:tag :issues)
|
|
124 | - (multiple-value-bind (result errno)
|
|
125 | - (unix::unix-mkdtemp "dir-XXXXXXa")
|
|
126 | - ;; Template doesn't end in X's
|
|
127 | - (assert-false result)
|
|
128 | - (assert-true (and (integerp errno) (plusp errno))))) |