#!/usr/bin/perl -I../lib
# Test that the OS detection works correctly.

use gnump3d::config;

my $windows = &isWindows();


if ( -e "/etc/passwd" )
{
  if ( $windows == 0 )
  {
    exit 0;
  }
  else
  {
    exit 1;
  }
}


exit 0;
