~ubuntu-branches/ubuntu/precise/boinc/precise

« back to all changes in this revision

Viewing changes to rboinc/server/test/test_authentication.pl

Tags: 6.12.8+dfsg-1
* New upstream release.
* Simplified debian/rules

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/perl -w
 
2
 
 
3
# $Id:$
 
4
 
 
5
# An authentication test script
 
6
 
 
7
 
 
8
require "./boinc_authentication.pl";
 
9
 
 
10
my $project_url='http://xxxx.org/LUNA';
 
11
my $email='yyyy@gmail.com';
 
12
my $password='zzzzz';
 
13
 
 
14
 
 
15
print lookup_email($project_url,$email);
 
16
print "\n\n";
 
17
 
 
18
print lookup_email_password($project_url,$email,$password);
 
19
print "\n\n";
 
20