OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [trunk/] [insight/] [expect/] [testsuite/] [exp_test.c] - Rev 1765

Compare with Previous | Blame | View Log

/*
 * exp-test -- this is a simple C program to test the interactive functions of expect.
 */
 
#include <stdio.h>
#include <string.h>
 
#define ARRAYSIZE 128
 
main (argc, argv)
int argc;
char *argv[];
{
  char line[ARRAYSIZE];
 
  do {
    memset (line, 0, ARRAYSIZE);
    fgets (line, ARRAYSIZE, stdin);
    *(line + strlen(line)-1) = '\0'; /* get rid of the newline */
 
    /* look for a few simple commands */
    if (strncmp (line,"prompt ", 6) == 0) {
      printf ("%s (y or n) ?", line + 6);
      if (getchar() == 'y')
	puts ("YES");
      else
	puts ("NO");
    }
    if (strncmp (line, "print ", 6) == 0) {
      puts (line + 6);
    }
  } while (strncmp (line, "quit", 4));
}
 

Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.