aboutsummaryrefslogtreecommitdiff
path: root/tests/test-freerdp-auth.c
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2012-11-09 20:41:52 +0100
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2012-11-09 20:41:52 +0100
commita9a228ea6e6d0b8d17c463ad05bbc1b7a9f0c3c5 (patch)
treefc7602ae7a8eecd1d7adae20eb3d6eebc6c90128 /tests/test-freerdp-auth.c
parentec6ec5d046dbf8bf0efa5ad680f1acfbe2daaa6f (diff)
downloadlibpam-x2go-a9a228ea6e6d0b8d17c463ad05bbc1b7a9f0c3c5.tar.gz
libpam-x2go-a9a228ea6e6d0b8d17c463ad05bbc1b7a9f0c3c5.tar.bz2
libpam-x2go-a9a228ea6e6d0b8d17c463ad05bbc1b7a9f0c3c5.zip
fix tests
Diffstat (limited to 'tests/test-freerdp-auth.c')
-rw-r--r--tests/test-freerdp-auth.c57
1 files changed, 0 insertions, 57 deletions
diff --git a/tests/test-freerdp-auth.c b/tests/test-freerdp-auth.c
deleted file mode 100644
index cdb8a31..0000000
--- a/tests/test-freerdp-auth.c
+++ /dev/null
@@ -1,57 +0,0 @@
-/*
- * Copyright © 2012 Canonical Ltd.
- *
- * This program is free software: you can redistribute it and/or modify it
- * under the terms of the GNU General Public License version 3, as
- * published by the Free Software Foundation.
- *
- * This program is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranties of
- * MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
- * PURPOSE. See the GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along
- * with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- * Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de>
- */
-
-#include <stdlib.h>
-#include <stdio.h>
-#include <string.h>
-
-int
-main (int argc, char * argv[])
-{
- char password[512];
- if (argc != 4) {
- printf("Not enough params");
- return -1;
- }
-
- if (scanf("%511s", password) != 1) {
- return -1;
- }
-
- /* Check username */
- if (strcmp(argv[2], "ruser")) {
- return -1;
- }
-
- /* Check password */
- if (strcmp(password, "password")) {
- return -1;
- }
-
- /* Check domain */
- if (strcmp(argv[3], "domain")) {
- return -1;
- }
-
- /* Check hostname */
- if (strcmp(argv[1], "rhost")) {
- return -1;
- }
-
- return 0;
-}