drupal 7 の datetime フィールドにデータを追加する必要があります。
$node->field_test_a_updated[0]['value'] = $val;
$node->field_test_a_updated[0]['delta'] = 0;
$node->field_test_a_updated[0]['timezone'] = 'UTC';
$node->field_test_a_updated[0]['timezone_db'] = 'UTC';
$node->field_test_a_updated[0]['date_type'] = 'datetime';
$val の値は "2010-06-15T00:00:00-00:00" です。
コンテンツをインポートしようとすると、日付フィールドを除いて、ノードに関連付けられている他のすべてのフィールドが適切に移行されます。[LANGUAGE_NONE] オプションも使用してみました。
drupal7 フィールド API に関連する何かが欠けていると確信しています。
助けてください。