~darkmuggle-deactivatedaccount/ubuntu/quantal/grub2/fix-872244

« back to all changes in this revision

Viewing changes to commands/test.c

  • Committer: Bazaar Package Importer
  • Author(s): Otavio Salvador
  • Date: 2006-01-05 15:20:40 UTC
  • mto: (17.3.1 squeeze) (1.9.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: james.westby@ubuntu.com-20060105152040-b72i5pq1a82z22yi
Tags: upstream-1.92
ImportĀ upstreamĀ versionĀ 1.92

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* test.c -- The test command..  */
 
2
/*
 
3
 *  GRUB  --  GRand Unified Bootloader
 
4
 *  Copyright (C) 2005  Free Software Foundation, Inc.
 
5
 *
 
6
 *  GRUB is free software; you can redistribute it and/or modify
 
7
 *  it under the terms of the GNU General Public License as published by
 
8
 *  the Free Software Foundation; either version 2 of the License, or
 
9
 *  (at your option) any later version.
 
10
 *
 
11
 *  This program is distributed in the hope that it will be useful,
 
12
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
 *  GNU General Public License for more details.
 
15
 *
 
16
 *  You should have received a copy of the GNU General Public License
 
17
 *  along with GRUB; if not, write to the Free Software
 
18
 *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
19
 */
 
20
 
 
21
#include <grub/normal.h>
 
22
#include <grub/dl.h>
 
23
#include <grub/arg.h>
 
24
#include <grub/misc.h>
 
25
#include <grub/mm.h>
 
26
#include <grub/env.h>
 
27
 
 
28
static grub_err_t
 
29
grub_cmd_test (struct grub_arg_list *state __attribute__ ((unused)), int argc,
 
30
               char **args)
 
31
 
 
32
{
 
33
  char *eq;
 
34
  char *eqis;
 
35
 
 
36
  /* XXX: No fancy expression evaluation yet.  */
 
37
  
 
38
  if (argc == 0)
 
39
    return 0;
 
40
  
 
41
  eq = grub_strdup (args[0]);
 
42
  eqis = grub_strchr (eq, '=');
 
43
  if (! eqis)
 
44
    return 0;
 
45
 
 
46
  *eqis = '\0';
 
47
  eqis++;
 
48
  /* Check an expression in the form `A=B'.  */
 
49
  if (grub_strcmp (eq, eqis))
 
50
    grub_error (GRUB_ERR_TEST_FAILURE, "false");
 
51
  grub_free (eq);
 
52
 
 
53
  return grub_errno;
 
54
}
 
55
 
 
56
 
 
57
 
 
58
GRUB_MOD_INIT(test)
 
59
{
 
60
  (void)mod;                    /* To stop warning. */
 
61
  grub_register_command ("[", grub_cmd_test, GRUB_COMMAND_FLAG_CMDLINE,
 
62
                         "[ EXPRESSION ]", "Evaluate an expression", 0);
 
63
  grub_register_command ("test", grub_cmd_test, GRUB_COMMAND_FLAG_CMDLINE,
 
64
                         "test EXPRESSION", "Evaluate an expression", 0);
 
65
}
 
66
 
 
67
GRUB_MOD_FINI(test)
 
68
{
 
69
  grub_unregister_command ("[");
 
70
  grub_unregister_command ("test");
 
71
}