Blame test/nw_misc.c

Packit 383869
#include <stdio.h>
Packit 383869
#include <stdlib.h>
Packit 383869
#include <screen.h>
Packit 383869
/*
Packit 383869
#include "testutil.h"
Packit 383869
*/
Packit 383869
Packit 383869
/* function to keep the screen open if not launched from bash */
Packit 383869
void _NonAppStop( void )
Packit 383869
{
Packit 383869
  if (getenv("_IN_NETWARE_BASH_") == NULL) {
Packit 383869
    printf("\r\n<Press any key to close screen> ");
Packit 383869
    getcharacter();
Packit 383869
  }
Packit 383869
}
Packit 383869
Packit 383869
/*
Packit 383869
static void test_not_impl(CuTest *tc)
Packit 383869
{
Packit 383869
    CuNotImpl(tc, "Test not implemented on this platform yet");
Packit 383869
}
Packit 383869
*/
Packit 383869