Skip to content

Commit

Permalink
GSI update to allow single letter hostnames.
Browse files Browse the repository at this point in the history
Bump test configuration for clean VM install.
Bump version for release.
  • Loading branch information
steve-o committed Aug 31, 2020
1 parent e2ff9cf commit cd3456a
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 20 deletions.
6 changes: 3 additions & 3 deletions openpgm/pgm/SConstruct
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,9 @@ env = Environment(
],
LIBS = [
],
PROTOBUF_CCFLAGS = '-I/miru/projects/protobuf/protobuf-2.3.0/gcc64/include',
PROTOBUF_LIBS = '/miru/projects/protobuf/protobuf-2.3.0/gcc64/lib/libprotobuf.a',
PROTOBUF_PROTOC = '/miru/projects/protobuf/protobuf-2.3.0/gcc64/bin/protoc'
PROTOBUF_CCFLAGS = '-I/home/steve-o/protobuf/include',
PROTOBUF_LIBS = '/home/steve-o/protobuf/lib/libprotobuf.a',
PROTOBUF_PROTOC = '/home/steve-o/protobuf/bin/protoc'
)

# Branch prediction
Expand Down
2 changes: 1 addition & 1 deletion openpgm/pgm/gsi.c
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ pgm_gsi_create_from_data (
{
pgm_return_val_if_fail (NULL != gsi, FALSE);
pgm_return_val_if_fail (NULL != data, FALSE);
pgm_return_val_if_fail (length > 1, FALSE);
pgm_return_val_if_fail (length > 0, FALSE);

struct pgm_md5_t ctx;
char resblock[16];
Expand Down
28 changes: 14 additions & 14 deletions openpgm/pgm/test/test.conf.pl
Original file line number Diff line number Diff line change
Expand Up @@ -4,29 +4,29 @@
%config = (
app => {
# Linux host
# host => 'ayaka',
# ip => '10.6.28.31',
# cmd => 'sudo /miru/projects/openpgm/pgm/ref/release-Linux-x86_64/test/app',
# network => 'eth0;239.192.0.1'
host => 'a',
ip => '192.168.0.1',
cmd => 'sudo /home/steve-o/openpgm/openpgm/pgm/ref/release-Linux-x86_64/test/app',
network => '192.168.0;239.192.0.1'
# Solaris host
host => 'ryoko',
ip => '10.6.28.36',
cmd => 'sudo LD_LIBRARY_PATH=/opt/glib-sunstudio/lib:$LD_LIBRARY_PATH /miru/projects/openpgm/pgm/ref/release-SunOS-sun4u-sunstudio/test/app',
network => 'eri0;239.192.0.1'
# host => 'ryoko',
# ip => '10.6.28.36',
# cmd => 'sudo LD_LIBRARY_PATH=/opt/glib-sunstudio/lib:$LD_LIBRARY_PATH /miru/projects/openpgm/pgm/ref/release-SunOS-sun4u-sunstudio/test/app',
# network => 'eri0;239.192.0.1'
# Windows host
# host => 'Administrator@sora',
# ip => '10.6.28.35',
# cmd => '/cygdrive/c/temp/app.exe',
# network => '10.6.28.35;239.192.0.1'
},
mon => {
host => 'momo',
cmd => 'sudo /miru/projects/openpgm/pgm/ref/release-FreeBSD-amd64/test/monitor',
network => 'bge0;239.192.0.1'
host => 'c',
cmd => 'sudo /home/steve-o/openpgm/openpgm/pgm/ref/release-Linux-x86_64/test/monitor',
network => '192.168.0;239.192.0.1'
},
sim => {
host => 'kiku',
cmd => 'sudo /miru/projects/openpgm/pgm/ref/release-Linux-x86_64/test/sim',
network => 'eth0;239.192.0.1'
host => 'b',
cmd => 'sudo /home/steve-o/openpgm/openpgm/pgm/ref/release-Linux-x86_64/test/sim',
network => '192.168.0;239.192.0.1'
},
);
4 changes: 2 additions & 2 deletions openpgm/pgm/version_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@
/* globals */
const unsigned pgm_major_version = 5;
const unsigned pgm_minor_version = 2;
const unsigned pgm_micro_version = 127;
const unsigned pgm_minor_version = 3;
const unsigned pgm_micro_version = 128;
const char* pgm_build_date = "{0}";
const char* pgm_build_time = "{1}";
const char* pgm_build_system = "{2}";
Expand Down

0 comments on commit cd3456a

Please sign in to comment.